Java IO Tutorial - Java CharBuffer.array()








Syntax

CharBuffer.array() has the following syntax.

public final char[] array()

Example

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

//from  ww w  . j av a 2 s  . com
import java.nio.CharBuffer;
import java.util.Arrays;

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


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


  }
}

The code above generates the following result.