El método array() de java.nio.CharBuffer Class se utiliza para devolver la array de caracteres que respalda este búfer. Cualquier modificación realizada en el contenido de este búfer hará que el contenido de la array devuelta también se modifique, y viceversa. El método hasArray() se invoca antes de invocar este método para garantizar que este búfer tenga una array de respaldo accesible.
Sintaxis:
public final char[] array()
Valor devuelto: este método devuelve la array que respalda este búfer.
Lanza: este método lanza la excepción ReadOnlyBufferException (si este búfer está respaldado por una array pero es de solo lectura)
El siguiente programa ilustra el método array() :
Ejemplo 1:
// Java program to demonstrate // array() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declaring the capacity of the CharBuffer int capacity = 10; // Creating the CharBuffer try { // creating object of CharBuffer // and allocating size capacity CharBuffer cb = CharBuffer.allocate(capacity); // putting the value in CharBuffer cb.put('a'); cb.put(2, 'b'); cb.rewind(); // getting array from cb // CharBuffer using array() method char[] cbb = cb.array(); // printing the CharBuffer cb System.out.println("CharBuffer: " + Arrays.toString(cbb)); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("ReadOnlyBufferException catched"); } } }
Producción:
CharBuffer: [a, , b, , , , , , , ]
Ejemplo 2:
// Java program to demonstrate // array() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declaring the capacity of the cb int capacity1 = 10; // Declaring the capacity of the cb1 int capacity2 = 5; // Creating the CharBuffer try { // // cb // // creating object of CharBuffer cb // and allocating size capacity CharBuffer cb = CharBuffer.allocate(capacity1); // putting the value in cb cb.put('a'); cb.put(2, 'b'); cb.put(3, 'c'); cb.rewind(); // print the CharBuffer System.out.println("CharBuffer cb: " + Arrays.toString(cb.array())); // // cb1 // // creating object of CharBuffer cb1 // and allocating size capacity CharBuffer cb1 = CharBuffer.allocate(capacity2); // putting the value in cb1 cb1.put(1, 'd'); cb1.put(2, 'e'); cb1.rewind(); // print the CharBuffer System.out.println("\nCharBuffer cb1: " + Arrays.toString(cb1.array())); // Creating a read-only copy of CharBuffer // using asReadOnlyBuffer() method CharBuffer readOnlycb = cb.asReadOnlyBuffer(); // print the CharBuffer System.out.print("\nReadOnlyBuffer CharBuffer: "); while (readOnlycb.hasRemaining()) System.out.print(readOnlycb.get() + ", "); // try to change readOnlycb System.out.println("\n\nTrying to get the array" + " from ReadOnlycb for editing"); char[] cbarr = readOnlycb.array(); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("Exception thrown: " + e); } } }
Producción:
CharBuffer cb: [a,, b, c,,,,,, ] CharBuffer cb1: [, d, e,, ] ReadOnlyBuffer CharBuffer: a,, b, c,,,,,,, Trying to get the array from ReadOnlycb for editing Exception thrown: java.nio.ReadOnlyBufferException