The array() method of java.nio.ByteBuffer class is used to return the byte array that backs the taken buffer.
Modifications to this buffer’s content will cause the returned array’s content to be modified, and vice versa.
Invoke the hasArray() method before invoking this method in order to ensure that this buffer has an accessible backing array.
Syntax :
public final byte[] array()
Return Value: This method returns the array that backs this buffer.
Exception: This method throws the ReadOnlyBufferException, If this buffer is backed by an array but is read-only.
Below are the examples to illustrate the array() method:
Example 1:
Java
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
int capacity = 4 ;
try {
ByteBuffer bb = ByteBuffer.allocate(capacity);
bb.put(( byte ) 20 );
bb.put(( byte ) 30 );
bb.put(( byte ) 40 );
bb.put(( byte ) 50 );
System.out.println( "ByteBuffer: "
+ Arrays.toString(bb.array()));
byte [] arr = bb.array();
System.out.println( "\nbyte array: " +
Arrays.toString(arr));
}
catch (IllegalArgumentException e) {
System.out.println( "Exception throws: " + e);
}
}
}
|
Output:
ByteBuffer: [20, 30, 40, 50]
byte array: [20, 30, 40, 50]
Example 2:
Java
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
int capacity = 4 ;
try {
ByteBuffer bb = ByteBuffer.allocate(capacity);
bb.put(( byte ) 20 );
bb.put(( byte ) 30 );
bb.put(( byte ) 40 );
bb.put(( byte ) 50 );
bb.rewind();
System.out.println( "Original ByteBuffer: "
+ Arrays.toString(bb.array()));
ByteBuffer bb1 = bb.asReadOnlyBuffer();
bb1.rewind();
System.out.print( "\nReadOnlyBuffer ByteBuffer : " );
while (bb1.hasRemaining())
System.out.print(bb1.get() + ", " );
System.out.println( "\n\nTrying to get the array"
+ " from bb1 for editing" );
byte [] arr = bb1.array();
}
catch (IllegalArgumentException e) {
System.out.println( "Exception throws: " + e);
}
catch (ReadOnlyBufferException e) {
System.out.println( "Exception throws: " + e);
}
}
}
|
Output:
Original ByteBuffer: [20, 30, 40, 50]
ReadOnlyBuffer ByteBuffer : 20, 30, 40, 50,
Trying to get the array from bb1 for editing
Exception throws: java.nio.ReadOnlyBufferException
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
03 Jun, 2021
Like Article
Save Article