Método ByteBuffer array() en Java con ejemplos

El método array() de la clase java.nio.ByteBuffer se utiliza para devolver la array de bytes que respalda el búfer tomado.
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 final byte[] 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

// 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);
 
            // print the ByteBuffer
            System.out.println("ByteBuffer:  "
                               + Arrays.toString(bb.array()));
 
            // getting byte array from ByteBuffer
            // using array() method
            byte[] arr = bb.array();
 
            // print the byte array
            System.out.println("\nbyte array: " +
                                    Arrays.toString(arr));
        }
 
        catch (IllegalArgumentException e) {
 
            System.out.println("Exception throws: " + e);
        }
    }
}
Producción: 

ByteBuffer:  [20, 30, 40, 50]

byte array: [20, 30, 40, 50]

 

Ejemplo 2:  

Java

// 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);
            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();
            bb1.rewind();
 
            // print the ByteBuffer
            System.out.print("\nReadOnlyBuffer ByteBuffer : ");
 
            while (bb1.hasRemaining())
                System.out.print(bb1.get() + ", ");
 
            // getting byte array from read-only
            // ByteBuffer using array() method
            System.out.println("\n\nTrying to get the array"
                               + " from bb1 for editing");
            byte[] arr = bb1.array();
        }
 
        catch (IllegalArgumentException e) {
 
            System.out.println("Exception throws: " + e);
        }
 
        catch (ReadOnlyBufferException e) {
 
            System.out.println("Exception throws: " + e);
        }
    }
}
Producción: 

Original ByteBuffer:  [20, 30, 40, 50]

ReadOnlyBuffer ByteBuffer : 20, 30, 40, 50, 

Trying to get the array from bb1 for editing
Exception throws: 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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *