Java I/O How to - Set the position








Question

We would like to know how to set the position.

Answer

  /* w  w  w.j  a  v a 2 s  .  c om*/

import java.nio.ByteBuffer;

public class Main {
  public static void main(String[] argv) throws Exception {
    ByteBuffer buf = ByteBuffer.allocateDirect(10);
    buf.position(5);
  }
}