Answers for "java put string into bytebuffer"

1

can't convert bytebuffer to string in java

// ...populate the buffer...
buffer.flip(); // flip the buffer for reading
byte[] bytes = new byte[buffer.remaining()]; // create a byte array the length of the number of bytes written to the buffer
buffer.get(bytes); // read the bytes that were written
String packet = new String(bytes);
Posted by: Guest on March-31-2021

Code answers related to "java put string into bytebuffer"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language