Java IO Tutorial - Java CharBuffer.get(char[] dst, int offset, int length)








Syntax

CharBuffer.get(char[] dst, int offset, int length) has the following syntax.

public CharBuffer get(char[] dst,  int offset,  int length)

Example

In the following code shows how to use CharBuffer.get(char[] dst, int offset, int length) method.

import java.nio.CharBuffer;
import java.util.Arrays;
// www  . j  a va  2  s  .c  om
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,0,2);
    System.out.println(Arrays.toString(charArray));


  }
}

The code above generates the following result.