Java CharBuffer.put(char[] src)
Syntax
CharBuffer.put(char[] src) has the following syntax.
public final CharBuffer put(char[] src)
Example
In the following code shows how to use CharBuffer.put(char[] src) method.
import java.nio.CharBuffer;
//from ww w . j a va 2s.co m
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();
System.out.println(cb1.toString());
}
}