El método asReadOnlyBuffer() de java.nio.CharBuffer Class se utiliza para crear un nuevo búfer de caracteres de solo lectura con el contenido de este búfer. El nuevo búfer es una réplica de este búfer. Por lo tanto, los cambios realizados en el contenido de este búfer serán visibles en el nuevo búfer.
Dado que el nuevo búfer es de solo lectura, no se permitirá ninguna modificación en su contenido. Los valores de posición, límite y marca de los dos búferes serán independientes. Los valores de capacidad, límite, posición y marca del nuevo búfer serán idénticos a los de este búfer. Si este búfer es de solo lectura, entonces este método se comporta exactamente de la misma manera que el método duplicado.
Sintaxis:
public abstract CharBuffer asReadOnlyBuffer()
Valor devuelto: este método devuelve el nuevo búfer de caracteres de solo lectura con el mismo contenido que el de este búfer.
A continuación se muestran los ejemplos para ilustrar el método asReadOnlyBuffer():
Ejemplos 1:
// Java program to demonstrate // asReadOnlyBuffer() 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(); // print the charBuffer System.out.println("Original CharBuffer: " + Arrays.toString(cb.array())); // Creating a read-only copy of CharBuffer // using asReadOnlyBuffer() method CharBuffer charBuffer = cb.asReadOnlyBuffer(); // print the CharBuffer System.out.print("\nReadOnlyBuffer CharBuffer: "); while (charBuffer.hasRemaining()) System.out.print(charBuffer.get() + ", "); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("ReadOnlyBufferException catched"); } } }
Original CharBuffer: [a, , b, , , , , , , ] ReadOnlyBuffer CharBuffer: a, , b, , , , , , , ,
Ejemplos 2:
// Java program to demonstrate // asReadOnlyBuffer() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) throws Exception { // 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.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, 'c'); cb1.put(2, 'd'); 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[] fbarr = readOnlyCb.array(); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("Exception thrown: " + e); } } }
CharBuffer cb: [a, , b, , , , , , , ] CharBuffer cb1: [ , c, d, , ] ReadOnlyBuffer CharBuffer: a, , b, , , , , , , , Trying to get the array from ReadOnlyCb for editing Exception thrown: java.nio.ReadOnlyBufferException