El método array() de la clase java.nio.Buffer se usa para devolver la array que respalda el búfer tomado.
Este método está destinado a permitir que los búfer respaldados por array se pasen al código nativo de manera más eficiente. Las subclases concretas proporcionan valores devueltos con tipos más fuertes para este método.
Las modificaciones al contenido de este búfer harán que se modifique el contenido de la array devuelta, y viceversa. Invoque el método hasArray antes de invocar este método para asegurarse de que este búfer tenga una array de respaldo accesible.
Sintaxis:
public abstract Object array()
Valor devuelto: este método devuelve la array que respalda este búfer.
Excepción: este método lanza la excepción ReadOnlyBufferException , si este búfer está respaldado por una array pero es de solo lectura.
A continuación se muestran los ejemplos para ilustrar 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 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); // Typecasting ByteBuffer into Buffer Buffer bb1 = (Buffer)bb; // getting array that backs this buffer // using array() method byte[] arr = (byte[])bb1.array(); // print the array System.out.print("array is : ["); for (int i = 0; i < arr.length; i++) System.out.print(" " + arr[i]); System.out.print(" ]"); } catch (ReadOnlyBufferException e) { System.out.println("Exception throws: " + e); } } }
array is : [ 20 30 40 50 ]
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 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); // Creating a read-only copy of ByteBuffer // using asReadOnlyBuffer() method ByteBuffer bb1 = bb.asReadOnlyBuffer(); // Typecasting Read only ByteBuffer // into Read-only Buffer Buffer buffer = (Buffer)bb1; // getting array that backs this buffer // using array() method byte[] arr = (byte[])buffer.array(); // print the array System.out.print("array is : ["); for (int i = 0; i < arr.length; i++) System.out.print(" " + arr[i]); System.out.print(" ]"); } catch (ReadOnlyBufferException e) { System.out.println("buffer is backed by " + "an array but is read-only"); System.out.println("Exception throws: " + e); } } }
buffer is backed by an array but is read-only Exception throws: java.nio.ReadOnlyBufferException
Referencia: https://docs.oracle.com/javase/9/docs/api/java/nio/Buffer.html#array–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA