CharBuffer.put(char c) has the following syntax.
public abstract CharBuffer put(char c)
In the following code shows how to use CharBuffer.put(char c) method.
import java.nio.CharBuffer; /* w w w.j ava2 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()); } }