ByteBuffer getChar() method in Java with Examples
Last Updated :
19 Sep, 2023
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 abstract char getChar()
Return Value: This method returns the char value at the buffer's current position
Throws: This method throws
BufferUnderflowException – If the buffer’s current position is not smaller than its limit, then this exception is thrown.
Below are the examples to illustrate the getChar() method:
Examples 1:
Java
// Java program to demonstrate
// getChar() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the ByteBuffer
int capacity = 50;
// Creating the ByteBuffer
try {
// creating object of ByteBuffer
// and allocating size capacity
ByteBuffer bb = ByteBuffer.allocate(capacity);
// putting the string in the bytebuffer
bb.asCharBuffer().put("Geeks");
// rewind the Bytebuffer
bb.rewind();
// Declaring the variable
char c;
// print the ByteBuffer
System.out.println("Original ByteBuffer: ");
while ((c = bb.getChar()) != 0)
System.out.print(c + " ");
// rewind the Bytebuffer
bb.rewind();
// Reads the char at this buffer's current position
// using getChar() method
char value = bb.getChar();
// print the char value
System.out.println("\n\nByte Value: " + value);
// Reads the char at this buffer's next position
// using getChar() method
char value1 = bb.getChar();
// print the char value
System.out.print("\nNext Byte Value: " + value1);
}
catch (IllegalArgumentException e) {
System.out.println("\nException Thrown: " + e);
}
catch (ReadOnlyBufferException e) {
System.out.println("\nException Thrown: " + e);
}
catch (BufferUnderflowException e) {
System.out.println("\nException Thrown: " + e);
}
}
}
Output:
Original ByteBuffer:
G e e k s
Byte Value: G
Next Byte Value: e
Examples 2:
Java
// Java program to demonstrate
// getChar() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the ByteBuffer
int capacity = 8;
// Creating the ByteBuffer
try {
// creating object of ByteBuffer
// and allocating size capacity
ByteBuffer bb = ByteBuffer.allocate(capacity);
// putting the string in the bytebuffer
bb.asCharBuffer().put("abc");
// rewind the Bytebuffer
bb.rewind();
// Declaring the variable
char c;
// print the ByteBuffer
System.out.print("Original ByteBuffer: ");
while ((c = bb.getChar()) != 0)
System.out.print(c + " ");
// rewind the Bytebuffer
bb.rewind();
// Reads the char at this buffer's current position
// using getChar() method
char value = bb.getChar();
// print the char value
System.out.println("\n\nFirst char Value: " + value);
// Reads the char at this buffer's next position
// using getChar() method
char value1 = bb.getChar();
// print the char value
System.out.println("\nSecond char Value: " + value1);
// Reads the char at this buffer's next position
// using getChar() method
char value2 = bb.getChar();
// print the char value
System.out.println("\nThird char Value: " + value2);
// Reads the char at this buffer's next position
// using getChar() method
System.out.print("\nsince the buffer current position is incremented");
System.out.print(" to greater than its limit ");
char value3 = bb.getChar();
char value4 = bb.getChar();
}
catch (BufferOverflowException e) {
System.out.println("\nException Thrown: " + e);
}
catch (ReadOnlyBufferException e) {
System.out.println("\nException Thrown: " + e);
}
catch (BufferUnderflowException e) {
System.out.println("\nException Thrown: " + e);
}
}
}
Output:
Original ByteBuffer: a b c
First char Value: a
Second char Value: b
Third char Value: c
since the buffer current position is incremented to greater than its limit
Exception Thrown: java.nio.BufferUnderflowException
get(int index)
The get(int index) method of ByteBuffer is used to reads two bytes at the given index, composing them into a char value according to the current byte order.
Syntax:
public abstract char getChar(int index)
Parameters: This method takes index (The index from which the Byte will be read) as a parameter.
Return Value: This method returns the char value at the given index.
Exception: This method throws
IndexOutOfBoundsException. If index is negative or not smaller than the buffer’s limit this exception is thrown.
Below are the examples to illustrate the
get(int index) method:
Examples 1:
Java
// Java program to demonstrate
// getChar() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the ByteBuffer
int capacity = 50;
// Creating the ByteBuffer
try {
// creating object of ByteBuffer
// and allocating size capacity
ByteBuffer bb = ByteBuffer.allocate(capacity);
// putting the string in the bytebuffer
bb.asCharBuffer().put("abc");
// rewind the Bytebuffer
bb.rewind();
// Declaring the variable
char c;
// print the ByteBuffer
System.out.print("Original ByteBuffer: ");
while ((c = bb.getChar()) != 0)
System.out.print(c + " ");
// rewind the Bytebuffer
bb.rewind();
// Reads the char at this buffer's at index 0
// using getChar() method
char value0 = bb.getChar(0);
// print the char value
System.out.println("\n\nchar Value at index 0: "
+ value0);
// Reads the char at this buffer's at index 2
// using getChar() method
char value1 = bb.getChar(2);
// print the char value
System.out.println("\nchar Value at index 2: "
+ value1);
// Reads the char at this buffer's at index 4
// using getChar() method
char value2 = bb.getChar(4);
// print the char value
System.out.println("\nchar Value at index 4: "
+ value2);
}
catch (IllegalArgumentException e) {
System.out.println("\nException Thrown: " + e);
}
catch (ReadOnlyBufferException e) {
System.out.println("\nException Thrown: " + e);
}
catch (BufferUnderflowException e) {
System.out.println("\nException Thrown: " + e);
}
}
}
Output:
Original ByteBuffer: a b c
char Value at index 0: a
char Value at index 2: b
char Value at index 4: c
Examples 2:
Java
// Java program to demonstrate
// getChar() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the ByteBuffer
int capacity = 50;
// Creating the ByteBuffer
try {
// creating object of ByteBuffer
// and allocating size capacity
ByteBuffer bb = ByteBuffer.allocate(capacity);
// putting the string in the bytebuffer
bb.asCharBuffer().put("abc");
// rewind the Bytebuffer
bb.rewind();
// Declaring the variable
char c;
// print the ByteBuffer
System.out.print("Original ByteBuffer: ");
while ((c = bb.getChar()) != 0)
System.out.print(c + " ");
// rewind the Bytebuffer
bb.rewind();
// Reads the char at this buffer's at index 0
// using getChar() method
char value0 = bb.getChar(0);
// print the char value
System.out.println("\n\nchar Value at index 0: "
+ value0);
// Reads the char at this buffer's at index 2
// using getChar() method
char value1 = bb.getChar(2);
// print the char value
System.out.println("\nchar Value at index 2: "
+ value1);
// Reads the char at this buffer's at index 4
// using getChar() method
System.out.println("\nTrying to get the char"
+ " at negative index ");
char value2 = bb.getChar(-4);
}
catch (IndexOutOfBoundsException e) {
System.out.println("\nException Thrown: "
+ e);
}
catch (ReadOnlyBufferException e) {
System.out.println("\nException Thrown: "
+ e);
}
catch (BufferUnderflowException e) {
System.out.println("\nException Thrown: "
+ e);
}
}
}
Output:
Original ByteBuffer: a b c
char Value at index 0: a
char Value at index 2: b
Trying to get the char at a negative index
Exception Thrown: java.lang.IndexOutOfBoundsException
Similar Reads
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
ByteBuffer getFloat() method in Java with Examples
getFloat() The getFloat() method of java.nio.ByteBuffer class is used to read the next four bytes at this buffer's current position, composing them into a float value according to the current byte order, and then increments the position by four. Syntax: public abstract float getFloat() Return Value:
5 min read
ByteBuffer getInt() method in Java with Examples
getInt() The getInt() method of java.nio.ByteBuffer class is used to read the next four bytes at this buffer's current position, composing them into an int value according to the current byte order, and then increments the position by four. Syntax: public abstract int getInt() Return Value: This met
5 min read
ByteBuffer getLong() method in Java with Examples
getLong() The getLong() method of java.nio.ByteBuffer class is used to read the next eight bytes at this buffer's current position, composing them into a long value according to the current byte order, and then increments the position by eight. Syntax: public abstract long getLong() Return Value: Th
5 min read
ByteBuffer hasArray() method in Java with Examples
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() m
2 min read
ByteBuffer getDouble() method in Java with Examples
getDouble() The getDouble() method of java.nio.ByteBuffer class is used to read the next eight bytes at this buffer's current position, composing them into a double value according to the current byte order, and then increments the position by eight. Syntax: public abstract double getDouble() Return
6 min read
DoubleBuffer get() methods in Java with Examples
The get() method of java.nio.DoubleBuffer Class is used to reads the double at the given bufferâs current position, and then increments the position. Syntax: public abstract double get() Return Value: This method returns the double value at the bufferâs current position. Exception: This method throw
3 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 flip() methods in Java with Examples
The flip() method of java.nio.ByteBuffer Class is used to flip this buffer. The limit is set to the current position and then the position is set to zero. If the mark is defined then it is discarded. After a sequence of channel-read or put operations, invoke this method to prepare for a sequence of
3 min read