CharBuffer.get(char[] dst) has the following syntax.
public CharBuffer get(char[] dst)
In the following code shows how to use CharBuffer.get(char[] dst) method.
import java.nio.CharBuffer; import java.util.Arrays; /* ww w .j av a 2 s. c o 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.