Java IO Tutorial - 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;
// w w w.  ja  v  a  2 s  . c  o  m
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.