El método duplicate() de java.nio.CharBuffer Class se usa para crear un nuevo búfer de caracteres que comparte el contenido del búfer dado.
El contenido del nuevo búfer será el de este búfer. Los cambios en el contenido de este búfer serán visibles en el nuevo búfer y viceversa; 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. El nuevo búfer será directo si, y solo si, este búfer es directo, y será de solo lectura si, y solo si, este búfer es de solo lectura.
Sintaxis:
public abstract CharBuffer duplicate()
Valor devuelto: este método devuelve el nuevo búfer de caracteres que lleva el contenido del búfer de caracteres anterior
A continuación se muestran los ejemplos para ilustrar el método duplicate() :
Ejemplo 1: Usando charbuffer directo
// Java program to demonstrate // duplicate() method // Using direct intbuffer 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 Intbuffer // and allocating size capacity CharBuffer cb1 = CharBuffer.allocate(capacity); // putting the value in Intbuffer cb1.put('a'); cb1.put(2, 'b'); cb1.rewind(); // print the Original CharBuffer System.out.println("Original CharBuffer: " + Arrays.toString(cb1.array())); // Creating a duplicate copy of CharBuffer // using duplicate() method CharBuffer cb2 = cb1.duplicate(); // print the duplicate copy of CharBuffer System.out.print("Duplicate CharBuffer: " + Arrays.toString(cb2.array())); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("ReadOnlyBufferException catched"); } } }
Original CharBuffer: [a, , b, , , , , , , ] Duplicate CharBuffer: [a, , b, , , , , , , ]
Ejemplo 2: Usar intbuffer de solo lectura
// Java program to demonstrate // duplicate() method // using read-onlyIntbuffer 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 Intbuffer // and allocating size capacity CharBuffer cb1 = CharBuffer.allocate(capacity); // putting the value in Intbuffer cb1.put('a'); cb1.put(2, 'b'); cb1.rewind(); // print the Original CharBuffer System.out.println("Original CharBuffer: " + Arrays.toString(cb1.array())); // Creating a read-only copy of CharBuffer // using asReadOnlyBuffer() method CharBuffer readonly = cb1.asReadOnlyBuffer(); // print the read-only copy of CharBuffer System.out.print("read-only CharBuffer: "); while (readonly.hasRemaining()) System.out.print(readonly.get() + ", "); System.out.println(""); // Rewinding the readonly CharBuffer readonly.rewind(); // Creating a duplicate copy of CharBuffer // using duplicate() method CharBuffer cb2 = readonly.duplicate(); // print the duplicate copy of CharBuffer System.out.print("duplicate copy of read-only CharBuffer: "); while (cb2.hasRemaining()) System.out.print(cb2.get() + ", "); System.out.println(""); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("ReadOnlyBufferException catched"); } } }
Original CharBuffer: [a, , b, , , , , , , ] read-only CharBuffer: a, , b, , , , , , , , duplicate copy of read-only CharBuffer: a, , b, , , , , , , ,