在Java中将字符串转换为短数字

在Java中使用Short.parseShort()方法将String转换为short。

假设以下是我们的字符串。

String str = “76”;

现在,该parseShort()方法会将字符串转换为short。

byte val = Byte.parseByte(str);

示例

public class Demo {
    public static void main(String[] args) {
       String str = "76";
       short val = Short.parseShort(str);
       System.out.println(val);
    }
}

输出结果

76