Android Utililty Methods ByteBuffer to String Convert

List of utility methods to do ByteBuffer to String Convert

Description

The list of methods to do ByteBuffer to String Convert are organized into topic(s).

Method

StringfromBytes(ByteBuffer buf)
Return a new String with chars corresponding to buf.
return fromBytes(buf.array(), buf.arrayOffset() + buf.position(),
        buf.arrayOffset() + buf.limit());