List of usage examples for java.nio ShortBuffer toString
public String toString()
From source file:Main.java
public static void main(String[] args) { ShortBuffer bb = ShortBuffer.allocate(10); bb.put((short) 100); System.out.println(bb.toString()); }
From source file:Main.java
public static void main(String[] args) { ShortBuffer bb = ShortBuffer.allocate(10); bb.put(new short[] { 100, 123, 123, 123, 1 }, 0, 1); System.out.println(bb.toString()); }