El método asReadOnlyBuffer() de la clase java.nio.ByteBuffer se usa para crear un nuevo búfer de bytes de solo lectura que comparte el contenido de este búfer.
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; el nuevo búfer en sí, sin embargo, será de solo lectura y no permitirá que se modifique el contenido compartido. 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 ByteBuffer asReadOnlyBuffer()
Valor de retorno: este método devuelve el nuevo búfer de bytes 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 ByteBuffer int capacity = 4; // Creating the ByteBuffer try { // creating object of ByteBuffer // and allocating size capacity ByteBuffer bb = ByteBuffer.allocate(capacity); // putting the int to byte typecast value in ByteBuffer bb.put((byte)20); bb.put((byte)30); bb.put((byte)40); bb.put((byte)50); bb.rewind(); // print the ByteBuffer System.out.println("Original ByteBuffer: " + Arrays.toString(bb.array())); // Creating a read-only copy of ByteBuffer // using asReadOnlyBuffer() method ByteBuffer bb1 = bb.asReadOnlyBuffer(); // print the ByteBuffer System.out.print("\nReadOnlyBuffer ByteBuffer: "); while (bb1.hasRemaining()) System.out.print(bb1.get() + ", "); } catch (IllegalArgumentException e) { System.out.println("Exception thrown : " + e); } catch (ReadOnlyBufferException e) { System.out.println("Exception thrown : " + e); } } }
Original ByteBuffer: [20, 30, 40, 50] ReadOnlyBuffer ByteBuffer: 20, 30, 40, 50,
Ejemplos 2:
// 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 ByteBuffer int capacity = 4; // Creating the ByteBuffer try { // creating object of ByteBuffer // and allocating size capacity ByteBuffer bb = ByteBuffer.allocate(capacity); // putting the int to byte typecast value in ByteBuffer bb.put((byte)20); bb.put((byte)30); bb.put((byte)40); bb.put((byte)50); bb.rewind(); // print the ByteBuffer System.out.println("Original ByteBuffer: " + Arrays.toString(bb.array())); // Creating a read-only copy of ByteBuffer // using asReadOnlyBuffer() method ByteBuffer bb1 = bb.asReadOnlyBuffer(); // print the ByteBuffer System.out.print("\nReadOnlyBuffer ByteBuffer: "); while (bb1.hasRemaining()) System.out.print(bb1.get() + ", "); // try to change read only bytebuffer System.out.println("\n\nTrying to get the array" + " from bb1 for editing"); byte[] bbarr = bb1.array(); } catch (IllegalArgumentException e) { System.out.println("Exception thrown : " + e); } catch (ReadOnlyBufferException e) { System.out.println("Exception thrown : " + e); } } }
Original ByteBuffer: [20, 30, 40, 50] ReadOnlyBuffer ByteBuffer: 20, 30, 40, 50, Trying to get the array from bb1 for editing Exception thrown : java.nio.ReadOnlyBufferException
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA