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 ww .  j a  v a  2s . 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.





















Home »
  Java Tutorial »
    java.nio »




Buffer
ByteBuffer
ByteOrder
CharBuffer
DoubleBuffer
FloatBuffer
IntBuffer
LongBuffer
MappedByteBuffer
ShortBuffer