El método slice() de java.nio.ByteBuffer Class se usa para crear un nuevo búfer de bytes cuyo contenido es una subsecuencia compartida del contenido del búfer dado.
El contenido del nuevo búfer comenzará en la posición actual 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.
La posición del nuevo búfer será cero, su capacidad y su límite serán el número de flotadores restantes en este búfer, y su marca será indefinida. 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 ByteBuffer slice()
Valor devuelto: este método devuelve el nuevo búfer de bytes.
A continuación se muestran los ejemplos para ilustrar el método slice():
Ejemplos 1:
Java
// Java program to demonstrate // slice() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declaring the capacity of the ByteBuffer int capacity = 5; // Creating the ByteBuffer try { // creating object of ByteBuffer // and allocating size capacity ByteBuffer bb1 = ByteBuffer.allocate(capacity); // putting the value in ByteBuffer bb1.put((byte)10); bb1.put((byte)20); // print the ByteBuffer System.out.println("Original ByteBuffer: " + Arrays.toString(bb1.array())); // print the ByteBuffer position System.out.println("\nposition: " + bb1.position()); // print the ByteBuffer capacity System.out.println("\ncapacity: " + bb1.capacity()); // Creating a shared subsequence buffer // of given ByteBuffer // using slice() method ByteBuffer bb2 = bb1.slice(); // print the shared subsequence buffer System.out.println("\nshared subsequence ByteBuffer: " + Arrays.toString(bb2.array())); // print the ByteBuffer position System.out.println("\nposition: " + bb2.position()); // print the ByteBuffer capacity System.out.println("\ncapacity: " + bb2.capacity()); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("ReadOnlyBufferException catched"); } } }
Original ByteBuffer: [10, 20, 0, 0, 0] position: 2 capacity: 5 shared subsequence ByteBuffer: [10, 20, 0, 0, 0] position: 0 capacity: 3
Ejemplos 2:
Java
// Java program to demonstrate // slice() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declaring the capacity of the ByteBuffer int capacity = 5; // Creating the ByteBuffer try { // creating object of ByteBuffer // and allocating size capacity ByteBuffer bb1 = ByteBuffer.allocate(capacity); // putting the value in ByteBuffer bb1.put((byte)10) .put((byte)20) .put((byte)30) .put((byte)40) .put((byte)50); // print the ByteBuffer System.out.println("Original ByteBuffer: " + Arrays.toString(bb1.array())); // print the ByteBuffer position System.out.println("\nposition: " + bb1.position()); // print the ByteBuffer capacity System.out.println("\ncapacity: " + bb1.capacity()); // Creating a shared subsequence buffer // of given ByteBuffer // using slice() method ByteBuffer bb2 = bb1.slice(); // print the shared subsequence buffer System.out.println("\nshared subsequence ByteBuffer: " + Arrays.toString(bb2.array())); // print the ByteBuffer position System.out.println("\nposition: " + bb2.position()); // print the ByteBuffer capacity System.out.println("\ncapacity: " + bb2.capacity()); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("ReadOnlyBufferException catched"); } } }
Original ByteBuffer: [10, 20, 30, 40, 50] position: 5 capacity: 5 shared subsequence ByteBuffer: [10, 20, 30, 40, 50] position: 0 capacity: 0
Referencia: https://docs.oracle.com/javase/9/docs/api/java/nio/ByteBuffer.html#slice–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA