Java IO Tutorial - Java CharBuffer.put(String src, int start, int end)








Syntax

CharBuffer.put(String src, int start, int end) has the following syntax.

public CharBuffer put(String src,  int start,  int end)

Example

In the following code shows how to use CharBuffer.put(String src, int start, int end) method.

//from  w w w.  j  a  v a  2 s  .  c om
import java.nio.CharBuffer;

public class Main {
  public static void main(String[] args) {
    CharBuffer cb1 = CharBuffer.allocate(5);
    cb1.put("java2s.com",0,2);
    cb1.rewind();

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

The code above generates the following result.