Currently I have a ByteBuffer in the following format:
"[java.nio.HeapByteBuffer[pos=8 lim=140 cap=83620]", which is a String.
I am currently hard-coding a HeapByteBuffer
into my Java Code to see if I can extract any information.
How can I read the bytes contained within the HeapByteBuffer
, so that I can later parse it into a certain format.
Please help!!