List of utility methods to do ByteBuffer to String Convert
String | fromBytes(ByteBuffer buf) Return a new String with chars corresponding to buf. return fromBytes(buf.array(), buf.arrayOffset() + buf.position(),
buf.arrayOffset() + buf.limit());
|