Languages
[Edit]
EN

Java - convert String to short

9 points
Created by:
TylerH
448

In Java, we can convert String to short in couple of different ways.

Short solutions:

// solution 1
short num1 = Short.parseShort("123"); // 123

// solution 2
Short num2 = Short.valueOf("123"); // 123

1. Using Short.parseShort()

public class Example1 {

    public static void main(String[] args) {
        String numStr = "123";
        short num = Short.parseShort(numStr);
        System.out.println(num); // 123
    }
}

Output:

123

2. Using Short.valueOf()

public class Example2 {

    public static void main(String[] args) {
        String str = "123";
        Short num = Short.valueOf(str);
        System.out.println(num); // 123
    }
}

Output:

123

 

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Java - String conversion

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join