File Java Tutorial

import java.nio.CharBuffer;
public class MainClass {
  public static void main(String[] argv) throws Exception {
    CharBuffer cb = CharBuffer.allocate(100);
    cb.put("This is a test String");
    cb.flip();
    System.out.println("hasArray() = " + cb.hasArray());
    char[] carray = cb.array();
    System.out.print("array=");
    for (int i = 0; i < carray.length; i++) {
      System.out.print(carray[i]);
    }
    System.out.println("");
    System.out.flush();
  }
}
/**/
hasArray() = true
array=This is a test String