VOOZH about

URL: https://www.geeksforgeeks.org/java/bytebuffer-tostring-method-in-java-with-examples/

⇱ ByteBuffer toString() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

ByteBuffer toString() method in Java with Examples

Last Updated : 6 Aug, 2021

The toString() method of ByteBuffer class is the inbuilt method used to returns a string representing the data contained by ByteBuffer Object. A new String object is created and initialized to get the character sequence from this ByteBuffer object and then String is returned by toString(). Subsequent changes to this sequence contained by Object do not affect the contents of the String.
Syntax: 

public abstract String toString()

Return Value: This method returns the String representing the data contained by ByteBuffer Object.
Below programs illustrate the ByteBuffer.toString() method:
Example 1: 


Output: 
Original ByteBuffer: [10, 20, 0, 0, 0]

string representation of ByteBuffer: java.nio.HeapByteBuffer[pos=2 lim=5 cap=5]

 

Example 2:


Output: 
Original ByteBuffer: [10, 20, 30, 40]

string representation of ByteBuffer: java.nio.HeapByteBuffer[pos=4 lim=4 cap=4]

 

Reference: https://docs.oracle.com/javase/9/docs/api/java/nio/ByteBuffer.html#toString--
 

Comment