The Buffer class provides a buffer or a container for data chunks of specific primitive types. A finite sequence of elements is stored linearly in a buffer.
Important properties of a buffer that make it convenient to perform read and write operations in the data are:
- Capacity: This property determines the maximum number of elements that can be there in a buffer.
- Limit: This property determines the limit of the data that can be read or write by providing the index of the elements.
- Position: This property determines the location of the current element in the buffer.
Syntax: Class declaration
public abstract class Buffer extends Object
Buffer class provides a subclass for each of the following buffer data types such as ByteBuffer, MappedByteBuffer, CharBuffer, DoubleBuffer, FloatBuffer, IntBuffer, LongBuffer, ShortBuffer. Buffer class inherits the following methods from class java.lang.Object such as clone(), finalize(), getClass(), hashCode(), notify(), notifyAll(), toString(), wait(). Now, moving on to the methods of Buffer class is as follows as shown alphabetically in the tabular format shown below:
| Method | Description |
|---|---|
| array() | This method returns the array that backs this buffer |
| arrayOffset() | This method returns the offset within this buffer’s backing array of the first element of the buffer |
| capacity() | This method returns this buffer’s capacity. |
| clear() | This method clears this buffer. |
| flip() | This method flips this buffer. |
| hasArray() | This method tells whether or not this buffer is backed by an accessible array. |
| hasRemaining() | This method tells whether there are any elements between the current position and the limit. |
| isDirect() | This method tells whether or not this buffer is direct. |
| isReadOnly() | This method tells whether or not this buffer is read-only. |
| limit() | This method returns this buffer’s limit. |
| limit(int newLimit) | This method sets this buffer’s limit. |
| mark() | This method sets this buffer’s mark at its position. |
| position() | This method returns this buffer’s position. |
| position(int newPosition) | This method sets this buffer’s position. |
| remaining() | This method returns the number of elements between the current position and the limit. |
| reset() | This method resets this buffer’s position to the previously marked position. |
| rewind() | This method rewinds this buffer. |
Implementation: Buffer class and its methods
Example 1
Java
// Java program to demonstrate Buffer ClassÂ
// Importing required librariesimport java.nio.*;import java.util.*;Â
// Main classpublic class GFG {Â
    // Main driver method    public static void main(String[] args)    {        // Declaring the capacity of the ByteBuffer        int capacity = 5;Â
        // Try block to check for exceptions        try {Â
            // Creating the ByteBufferÂ
            // Creating object of ByteBuffer class and            // allocating size capacity            ByteBuffer bufferObj                = ByteBuffer.allocate(capacity);Â
            // Putting the int to byte typecast            // value in ByteBuffer using put() methodÂ
            // Custom input entries            bufferObj.put((byte)10);            bufferObj.put((byte)20);            bufferObj.put((byte)30);            bufferObj.put((byte)40);            bufferObj.put((byte)50);Â
            // Typecasting ByteBuffer into Buffer            Buffer bufferObj1 = (Buffer)bufferObj;Â
            // Getting array that backs this buffer            // using array() method            byte[] arr = (byte[])bufferObj1.array();Â
            // Display message only            System.out.print(" The array is : [");Â
            // Print the array            for (int i = 0; i < arr.length; i++)                System.out.print(" " + arr[i]);            System.out.print(" ]");        }Â
        // Catch block to handle the exception        catch (ReadOnlyBufferException e) {Â
            // Print message where exception occurred            // is displayed on console            System.out.println("Exception throws: " + e);        }    }} |
The array is : [ 10 20 30 40 50 ]
Example 2
Java
// Java program to demonstrate Buffer classÂ
// Importing required librariesimport java.nio.*;import java.util.*;Â
// Main classpublic class GFG {Â
    // Main driver method    public static void main(String[] args)    {Â
        // try block to check for exceptions        try {Â
            // Creating and initializing byte array            // with custom elements            byte[] barr = { 10, 20, 30, 40, 50 };Â
            // Creating object of ByteBuffer class            // and allocating size capacity            ByteBuffer bufferObj = ByteBuffer.wrap(barr);Â
            // Typecasting ByteBuffer into Buffer            Buffer bufferObj1 = (Buffer)bufferObj;Â
            // now trying to set the position at index 2            bufferObj1.position(2);Â
            // Setting this buffer mark position            // using mark() method            bufferObj1.mark();Â
            // Again trying to set the position at index 4            bufferObj1.position(5);Â
            // Display the position            System.out.println("position before reset: "                               + bufferObj1.position());Â
            // Now trying to call clear() to restore            // to the position at index 0 by discarding the            // mark            bufferObj1.clear();Â
            // Print and display the position            System.out.println("position after reset: "                               + bufferObj1.position());        }Â
        // Catch block to handle the exception        catch (InvalidMarkException e) {Â
            // Display message to be showcase when exception            // occurred            System.out.println(                "new position is less than "                + "the position we marked before ");Â
            // Print the exception on the console            // along with display message            System.out.println("Exception throws: " + e);        }    }} |
position before reset: 5 position after reset: 0
Â
