Java I/O How to - Loop through a LongBuffer with a while loop








Question

We would like to know how to loop through a LongBuffer with a while loop.

Answer

import java.nio.ByteBuffer;
import java.nio.LongBuffer;
/*  w  ww.  java  2  s  . c o m*/
public class MainClass {
  public static void main(String[] args) {
    ByteBuffer bb = ByteBuffer.wrap(new byte[] { 0, 0, 0, 0, 0, 0, 0, 'a' });
    bb.rewind();
    LongBuffer lb = ((ByteBuffer) bb.rewind()).asLongBuffer();
    System.out.println("Long Buffer");
    while (lb.hasRemaining())
      System.out.println(lb.position() + " -> " + lb.get());
  }
}

The code above generates the following result.