- 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 put() method in Java
The required value can be written at the current position of the buffer and then the current position is incremented using the method put() in the class java.nio.CharBuffer. This method requires a single parameter i.e. the value to be written in the buffer and it returns the buffer in which the value is inserted.
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(5); buffer.put('A'); buffer.put('P'); buffer.put('P'); buffer.put('L'); buffer.put('E'); buffer.rewind(); System.out.println("The CharBuffer is: " + Arrays.toString(buffer.array())); } catch (BufferOverflowException e) { System.out.println("Error!!! BufferOverflowException"); } 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 asReadOnlyBuffer() method in Java
- CharBuffer hasArray() method in Java
- CharBuffer array() 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
- ArrayBlockingQueue put() method in Java
- NavigableMap put() Method in Java
- DoubleBuffer put() method in Java

Advertisements