Buffer arrayOffset() method in Java with Examples Last Updated : 28 Jun, 2019 Comments Improve Suggest changes Like Article Like Report The arrayOffset() method of java.nio.Buffer class is used to return the offset within the given buffer's backing array of the first element of the buffer. If this buffer is backed by an array then buffer position p corresponds to array index p + arrayOffset(). Invoke the hasArray method before invoking this method in order to ensure that this buffer has an accessible backing array. Syntax: public abstract int arrayOffset() Return Value: This method returns the offset within this buffer's array of the first element of the buffer Exception:: This method throws the ReadOnlyBufferException, If this buffer is backed by an array but is read-only. Below are the examples to illustrate the arrayOffset() method: Example 1: Java // Java program to demonstrate // arrayOffset() 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 buffer = (Buffer)bb; // offset within this buffer's array // of the first element of the buffer // using arrayOffset() method int offset = buffer.arrayOffset(); // print the array System.out.println("arrayOffset is : " + offset); } catch (ReadOnlyBufferException e) { System.out.println("buffer is backed by an " + "array but is read-only"); System.out.println("Exception throws: " + e); } } } Output: arrayOffset is : 0 Example 2: For ReadOnlyBufferException Java // Java program to demonstrate // arrayOffset() 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; // offset within this buffer's array // of the first element of the buffer // using arrayOffset() method int offset = buffer.arrayOffset(); // print the array System.out.println("arrayOffset is : " + offset); } catch (ReadOnlyBufferException e) { System.out.println("buffer is backed by " + "an array but is read-only"); System.out.println("Exception throws: " + e); } } } Output: buffer is backed by an array but is read-only Exception throws: java.nio.ReadOnlyBufferException Reference: https://docs.oracle.com/javase/9/docs/api/java/nio/Buffer.html#arrayOffset-- Create Quiz Comment R rohitprasad3 Follow 0 Improve R rohitprasad3 Follow 0 Improve Article Tags : Java Java-Functions Java-NIO package Java-Buffer Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings7 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java5 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages2 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java4 min readJava Comparator Interface5 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java7 min readFile Handling in Java4 min readJava Method References7 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management3 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers1 min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read Like