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;
/*from ww w. 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,0,2);
    System.out.println(Arrays.toString(charArray));


  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.nio »




Buffer
ByteBuffer
ByteOrder
CharBuffer
DoubleBuffer
FloatBuffer
IntBuffer
LongBuffer
MappedByteBuffer
ShortBuffer