Java CharBuffer.duplicate()

Syntax

CharBuffer.duplicate() has the following syntax.

public abstract CharBuffer duplicate()

Example

In the following code shows how to use CharBuffer.duplicate() method.


import java.nio.CharBuffer;
import java.util.Arrays;
//  w w w .  j  a  v a 2s .co  m
public class Main {
  public static void main(String[] args) {
    CharBuffer cb1 = CharBuffer.allocate(50);
    cb1.append("java2s.com");
    cb1.rewind();

    System.out.println(cb1.charAt(2));
    System.out.println(Arrays.toString(cb1.array()));

    
    CharBuffer cb2 = cb1.duplicate();
    System.out.println(Arrays.toString(cb2.array()));
    

  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.nio »




Buffer
ByteBuffer
ByteOrder
CharBuffer
DoubleBuffer
FloatBuffer
IntBuffer
LongBuffer
MappedByteBuffer
ShortBuffer