java ByteBuffer和byte 数组相互转换

// Create a byte array
byte[] bytes = new byte[10];


// Wrap a byte array into a buffer
ByteBuffer buf = ByteBuffer.wrap(bytes);


// Retrieve bytes between the position and limit
// (see Putting Bytes into a ByteBuffer)
bytes = new byte[buf.remaining()];


// transfer bytes from this buffer into the given destination array
buf.get(bytes, 0, bytes.length);


// Retrieve all bytes in the buffer
buf.clear();
bytes = new byte[buf.capacity()];


// transfer bytes from this buffer into the given destination array
buf.get(bytes, 0, bytes.length);

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。