Java ShortBuffer.get(short[] dst, int offset, int length)

Syntax

ShortBuffer.get(short[] dst, int offset, int length) has the following syntax.

public ShortBuffer get(short[] dst,  int offset,  int length)

Example

In the following code shows how to use ShortBuffer.get(short[] dst, int offset, int length) method.


/* ww w .  j a v a 2s.  co m*/
import java.nio.ShortBuffer;
import java.util.Arrays;

public class Main {
  public static void main(String[] args) {
    ShortBuffer bb = ShortBuffer.allocate(10);
    bb.put((short)100);
    
    bb.rewind();
    
    short[] shortArray = new short[10];
    bb.get(shortArray,0,2);
    
    System.out.println(Arrays.toString(shortArray));

  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.nio »




Buffer
ByteBuffer
ByteOrder
CharBuffer
DoubleBuffer
FloatBuffer
IntBuffer
LongBuffer
MappedByteBuffer
ShortBuffer