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