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