Java tutorial
public class Main { public static void main(String[] args) { Long longObject = new Long("1234567"); short s = longObject.shortValue(); System.out.println("short:" + s); } }