ByteBuffer hasArray() method in Java with Examples Last Updated : 17 Jun, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The hasArray() method of java.nio.ByteBuffer class is used to ensure whether or not the given buffer is backed by an accessible byte array. It returns true if there is an accessible backing array to this buffer, else it returns false. If this method returns true, then the array() and arrayOffset() methods may safely be invoked, as they work on the backing array. Syntax: public final boolean hasArray() Returns: This method will return true if, and only if, this buffer is backed by an array and is not read-only. Else it returns false. Below are the examples to illustrate the hasArray() method: Examples 1: When the buffer is backed by an array Java // Java program to demonstrate // hasArray() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declaring the capacity of the ByteBuffer int capacity = 10; // Creating the ByteBuffer try { // creating object of bytebuffer // and allocating size capacity ByteBuffer bb = ByteBuffer.allocate(capacity); // putting the value in bytebuffer bb.put((byte)10); bb.put((byte)20); bb.rewind(); // checking FloatBuffer fb is backed by array or not boolean isArray = bb.hasArray(); // checking if else condition if (isArray) System.out.println("ByteBuffer bb is" + " backed by array"); else System.out.println("ByteBuffer bb is" + " not backed by any array"); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("ReadOnlyBufferException catched"); } } } Output: ByteBuffer bb is backed by array Examples 2: When the buffer is backed by an array Java // Java program to demonstrate // hasArray() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declaring the capacity of the ByteBuffer int capacity = 10; // Creating the ByteBuffer try { // creating object of ByteBuffer // and allocating size capacity ByteBuffer bb = ByteBuffer.allocate(capacity); // putting the value in ByteBuffer bb.put((byte)8.56F); bb.put((byte)10); bb.rewind(); // Creating a read-only copy of ByteBuffer // using asReadOnlyBuffer() method ByteBuffer bb1 = bb.asReadOnlyBuffer(); // checking ByteBuffer bb is backed by array or not boolean isArray = bb1.hasArray(); // checking if else condition if (isArray) System.out.println("ByteBuffer bb is" + " backed by array"); else System.out.println("ByteBuffer bb is" + " not backed by any array"); } catch (IllegalArgumentException e) { System.out.println("IllegalArgumentException catched"); } catch (ReadOnlyBufferException e) { System.out.println("ReadOnlyBufferException catched"); } } } Output: ByteBuffer bb is not backed by any array Reference: https://docs.oracle.com/javase/9/docs/api/java/nio/ByteBuffer.html#hasArray-- Comment More infoAdvertise with us Next Article ByteBuffer get() method in Java with Examples R rohitprasad3 Follow Improve Article Tags : Java Java-Functions Java-NIO package Java-ByteBuffer Practice Tags : Java Similar Reads Buffer hasArray() methods in Java with Examples The hasArray() method of java.nio.Buffer class is used to tell whether or not this buffer is backed by an accessible array. If this method returns true then the array and arrayOffset() methods may safely be invoked. Syntax: public abstract boolean hasArray() Returns: This method will return true if, 2 min read DoubleBuffer hasArray() method in Java with Examples The hasArray() method of java.nio.DoubleBuffer class is used to ensure whether or not the given buffer is backed by an accessible float array. It returns true if there is an accessible backing array to this buffer, else it returns false. If this method returns true, then the array() and arrayOffset( 2 min read ByteBuffer getChar() method in Java with Examples getChar() The getChar() method of java.nio.ByteBuffer class is used to get method for reading a char value Reads the next two bytes at this buffer's current position, composing them into a char value according to the current byte order, and then increments the position by two. Syntax: public abstrac 6 min read ByteBuffer hashCode() method in Java with Examples The hashCode() method of java.nio.ByteBuffer class is used to return the current hash code of this buffer. The hash code of a byte buffer depends only upon its remaining elements; that is, upon the elements from position() up to, and including, the element at limit() - 1. Because buffer hash codes a 2 min read ByteBuffer get() method in Java with Examples get() The get() method of java.nio.ByteBuffer class is used to read the byte at the buffer's current position, and then increments the position. Syntax : public abstract byte get() Return Value: This method returns the byte at the buffer's current position. Throws: This method throws BufferUnderflow 6 min read ByteBuffer getShort() method in Java with Examples getShort() The getShort() method of java.nio.ByteBuffer class is used to read the next two bytes at this buffer's current position, composing them into a short value according to the current byte order, and then increments the position by two. Syntax: public abstract short getShort() Return Value: T 5 min read Like