Answers:
取决于您要做什么。
如果您要检索的是剩余字节(在位置和限制之间),那么您所拥有的将起作用。您也可以这样做:
ByteBuffer bb =..
byte[] b = new byte[bb.remaining()];
bb.get(b);
根据ByteBuffer javadocs 等效。
bb.slice().remaining()
。这样一来,它看上去就像是一个干净的转储,而没有触及原始缓冲区。
int
并使用bitmask:int unsigned_byte = b[k] & 0xff;
的某个值k
。
ByteBuffer#clear
吗?
请注意,bb.array()不支持字节缓冲区的位置,如果正在处理的字节缓冲区是其他缓冲区的一部分,则可能会更糟。
即
byte[] test = "Hello World".getBytes("Latin1");
ByteBuffer b1 = ByteBuffer.wrap(test);
byte[] hello = new byte[6];
b1.get(hello); // "Hello "
ByteBuffer b2 = b1.slice(); // position = 0, string = "World"
byte[] tooLong = b2.array(); // Will NOT be "World", but will be "Hello World".
byte[] world = new byte[5];
b2.get(world); // world = "World"
您可能不想这样做。
如果您确实不想复制字节数组,则可以使用字节缓冲区的arrayOffset()+剩余的()解决方法,但这仅在应用程序支持字节缓冲区的index + length时才有效。需要。
就如此容易
private static byte[] getByteArrayFromByteBuffer(ByteBuffer byteBuffer) {
byte[] bytesArray = new byte[byteBuffer.remaining()];
byteBuffer.get(bytesArray, 0, bytesArray.length);
return bytesArray;
}
如果一个人对给定的(Direct)ByteBuffer的内部状态一无所知,并且想要检索缓冲区的全部内容,则可以使用:
ByteBuffer byteBuffer = ...;
byte[] data = new byte[byteBuffer.capacity()];
((ByteBuffer) byteBuffer.duplicate().clear()).get(data);
ByteBuffer.get(byte[])
返回一个ByteBuffer
data
变量中。getter返回this
,请参见其Javadoc。
这是获取byte []的简单方法,但是使用ByteBuffer的部分目的是避免必须创建byte []。也许您可以直接从ByteBuffer中获得想要从byte []获得的任何内容。
bb.capacity()
也可能相等bb.remaining()
,因此您不得使用它们的相等性作为对何时bb.array()
正确的检验。请参阅ByteBuffer.slice()
。