将字符串转换为Java中的数字

要将字符串转换为Java中的数字,请使用Integer.parseInt()方法。首先,让我们使用创建字符串并设置值。

String str = "45";

现在,获取一个Integer并使用Integer.parseInt()方法。

Integer i = Integer.parseInt(str);

让我们看完整的例子。

示例

public class Demo {
   public static void main( String args[] ) {
      String str = "45";
      Integer i = Integer.parseInt(str);
      System.out.println("Num: " + i);
   }
}

输出结果

Num: 45