El método rewind() de java.nio.ByteBuffer Class se utiliza para rebobinar este búfer. La posición se pone a cero y la marca se descarta. Invoque este método antes de una secuencia de operaciones de obtención o escritura de canal, suponiendo que el límite ya se haya establecido correctamente. Invocar este método no cambia ni descarta el valor de la marca.
Sintaxis:
public ByteBuffer rewind()
Valor devuelto: este método devuelve este búfer.
A continuación se muestran los ejemplos para ilustrar el método rewind():
Ejemplos 1:
// Java program to demonstrate // rewind() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // defining and allocating ByteBuffer // using allocate() method ByteBuffer byteBuffer = ByteBuffer.allocate(4); // put byte value in byteBuffer // using put() method byteBuffer.put((byte)20); byteBuffer.put((byte)'a'); // Typecast Bytebuffer to buffer Buffer buffer = (Buffer)byteBuffer; // print the byte buffer System.out.println("Buffer before operation: " + Arrays.toString( (byte[])buffer.array()) + "\nPosition: " + buffer.position() + "\nLimit: " + buffer.limit()); // rewind the Buffer // using rewind() method buffer.rewind(); // print the bytebuffer System.out.println("\nBuffer after operation: " + Arrays.toString( (byte[])buffer.array()) + "\nPosition: " + buffer.position() + "\nLimit: " + buffer.limit()); } }
Producción:
Buffer before operation: [20, 97, 0, 0] Position: 2 Limit: 4 Buffer after operation: [20, 97, 0, 0] Position: 0 Limit: 4
Ejemplos 2:
// Java program to demonstrate // rewind() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // defining and allocating ByteBuffer // using allocate() method ByteBuffer byteBuffer = ByteBuffer.allocate(5); // put byte value in byteBuffer // using put() method byteBuffer.put((byte)20); byteBuffer.put((byte)30); byteBuffer.put((byte)40); // mark will be going to discard // by rewind() byteBuffer.mark(); // Typecast Bytebuffer to buffer Buffer buffer = (Buffer)byteBuffer; // print the buffer System.out.println("Buffer before operation: " + Arrays.toString( (byte[])buffer.array()) + "\nPosition: " + buffer.position() + "\nLimit: " + buffer.limit()); // rewind the Buffer // using rewind() method buffer.rewind(); // print the bytebuffer System.out.println("\nBuffer after operation: " + Arrays.toString( (byte[])buffer.array()) + "\nPosition: " + buffer.position() + "\nLimit: " + buffer.limit()); } }
Producción:
Buffer before operation: [20, 30, 40, 0, 0] Position: 3 Limit: 5 Buffer after operation: [20, 30, 40, 0, 0] Position: 0 Limit: 5
Referencia: https://docs.oracle.com/javase/9/docs/api/java/nio/Buffer.html#rewind–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA