Java IO Tutorial - Java ByteBuffer.getShort(int index)








Syntax

ByteBuffer.getShort(int index) has the following syntax.

public abstract short getShort(int index)

Example

In the following code shows how to use ByteBuffer.getShort(int index) method.

import java.nio.ByteBuffer;
/*from  ww  w  . j  av  a 2 s.  c o  m*/
public class Main {
  private static final int BSIZE = 1024;

  public static void main(String[] args) {
    ByteBuffer bb = ByteBuffer.allocate(BSIZE);

    bb.asShortBuffer().put((short) 471142);
    System.out.println(bb.getShort(0));

  }
}

The code above generates the following result.