Java程序检查字符串是否为有效数字

若要检查字符串是否为有效的Integer,请使用Integer.parseInt()方法,将要检查的字符串作为参数传递。

要检查字符串是否为有效的Float,请使用Float.parseFloat()方法,将要检查的字符串作为参数传递。

以下是检查有效整数的示例。

示例

public class Demo {
   public static void main(String args[]) throws Exception {
      String id = "100";
      int val = Integer.parseInt(id);
      System.out.println(val);
   }
}

输出结果

100

以下是检查有效浮点的示例。

示例

public class Demo {
   public static void main(String args[]) throws Exception {
      String id = "100.5";
      float val = Float.parseFloat(id);
      System.out.println(val);
   }
}

输出结果

100.5