Java CharBuffer.put(char[] src, int offset, int length)

Syntax

CharBuffer.put(char[] src, int offset, int length) has the following syntax.

public CharBuffer put(char[] src,  int offset,  int length)

Example

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


import java.nio.CharBuffer;
// ww  w . j a  v  a 2s.  c om
public class Main {
  public static void main(String[] args) {
    CharBuffer cb1 = CharBuffer.allocate(5);
    cb1.put(new char[]{'j','a','v','a','2','s','.','c','o','m',},0,4);
    cb1.rewind();

    System.out.println(cb1.toString());
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.nio »




Buffer
ByteBuffer
ByteOrder
CharBuffer
DoubleBuffer
FloatBuffer
IntBuffer
LongBuffer
MappedByteBuffer
ShortBuffer