- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
CharBuffer array() method in Java
A char array for the buffer can be obtained using the method array() in the class java.nio.CharBuffer. If the returned array is modified, then the contents of the buffer are also similarly modified and vice versa. If the buffer is read-only, then the ReadOnlyBufferException is thrown.
A program that demonstrates this is given as follows −
Example
import java.nio.*; import java.util.*; public class Demo { public static void main(String[] args) { int n = 5; try { CharBuffer buffer = CharBuffer.allocate(n); buffer.put('A'); buffer.put('P'); buffer.put('P'); buffer.put('L'); buffer.put('E'); buffer.rewind(); char[] arr = buffer.array(); System.out.println("The CharBuffer is: " + Arrays.toString(arr)); } catch (IllegalArgumentException e) { System.out.println("Error!!! IllegalArgumentException"); } catch (ReadOnlyBufferException e) { System.out.println("Error!!! ReadOnlyBufferException"); } } }
Output
The CharBuffer is: [A, P, P, L, E]
- Related Articles
- CharBuffer equals() method in Java
- CharBuffer put() method in Java
- CharBuffer asReadOnlyBuffer() method in Java
- CharBuffer hasArray() method in Java
- CharBuffer arrayOffset() method in Java
- CharBuffer get() method in Java
- CharBuffer compareTo() method in Java
- CharBuffer wrap() method in Java
- CharBuffer slice() method in Java
- CharBuffer compact() method in Java
- CharBuffer duplicate() method in Java
- CharBuffer allocate() method in Java
- IntBuffer array() method in Java
- FloatBuffer array() method in Java
- DoubleBuffer array() method in Java

Advertisements