Java tutorial
import java.lang.reflect.Array; public class Main { public static void main(String args[]) { short[] array = new short[] { 1, 2, 3 }; short value = Array.getShort(array, 1); System.out.println(value); } }