Java IO Tutorial - Java ShortBuffer.wrap(short[] array)








Syntax

ShortBuffer.wrap(short[] array) has the following syntax.

public static ShortBuffer wrap(short[] array)

Example

In the following code shows how to use ShortBuffer.wrap(short[] array) method.

import java.nio.ShortBuffer;
import java.util.Arrays;
//from  w ww.j  a  va2  s  .com
public class Main {
  public static void main(String[] args) {
    ShortBuffer bb = ShortBuffer.wrap(new short[] { 0, 1, 2, 3, 4, 5, 6 });
    bb.put((short)100);
    System.out.println(Arrays.toString(bb.array()));

  }
}

The code above generates the following result.