解析 ByteBuffer 寻找空白
我有一个 ByteBuffer 包含一些数据(确切地说是字符)。如何解析它以仅获取直到第一个空白字符的起始字节?
I have a ByteBuffer containing some data (chars to be exact). How can I parse it to get only starting bytes up to first whitespace character ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是逐步抛出 ByteBuffer,直到得到一个空格。例如,
有更有效的方法,但这可能是最简单的。
The simplest way it to step threw the ByteBuffer until you get a whitespace. e.g.
There are more efficient ways but that is perhaps the simplest.
使用
getChar()
方法,它将为您提取下一个字符。检查一下,一旦看到空白字符。别再读了。Use the
getChar()
method and it will pull out the next char for you. Check it and once you see a whitespace character. Stop reading it.