Java tutorial
import java.nio.CharBuffer; public class Main { public static void main(String[] args) { CharBuffer cb1 = CharBuffer.allocate(5); cb1.put(2, 'j'); cb1.rewind(); System.out.println(cb1.order()); } }