Java CharBuffer.get(char[] dst)
Syntax
CharBuffer.get(char[] dst) has the following syntax.
public CharBuffer get(char[] dst)
Example
In the following code shows how to use CharBuffer.get(char[] dst) method.
import java.nio.CharBuffer;
import java.util.Arrays;
//from w ww . j a v a 2s . co m
public class Main {
public static void main(String[] args) {
CharBuffer cb1 = CharBuffer.allocate(5);
cb1.put(2,'j');
cb1.rewind();
char[] charArray = new char[5];
cb1.get(charArray);
System.out.println(Arrays.toString(charArray));
}
}
The code above generates the following result.