java中String字符串转化为数字

时间:2023-01-07 11:31:18

java中String字符串转化为数字:

  转换为浮点型:

    使用Double或者Float的parseDouble或者parseFloat方法进行转换

123 String   s   =   "123.456 ";  //要确保字符串为一个数值,否则会出异常double   d   =   Double.parseDouble(s); float   f   =   Float.parseFloat(s);

转换为整型: 

  使用Integer的parseInt方法进行转换。

1 int i = Integer.parseInt([String]);//[String]待转换的字符串