Java CharBuffer.put(char c)
Syntax
CharBuffer.put(char c) has the following syntax.
public abstract CharBuffer put(char c)
Example
In the following code shows how to use CharBuffer.put(char c) method.
import java.nio.CharBuffer;
/*ww w. jav a 2 s. c o m*/
public class Main {
public static void main(String[] args) {
CharBuffer cb1 = CharBuffer.allocate(5);
cb1.put('j').put('a').put('v').put('a').put('2').put('s');;
cb1.rewind();
System.out.println(cb1.toString());
}
}