• Source
    1.  
    2. class Ideone
    3. {
    4. public static void main (String[] args) throws java.lang.Exception
    5. {
    6. //using parse methods
    7. String x = "12";
    8.  
    9. short y = Short.parseShort(x);
    10. float z = Float.parseFloat(x);
    11. }
    12. }