Java字符串转换整数
时间: 2024-02-23 11:30:10 浏览: 6
java判断字符串是正整数的实例
5星 · 资源好评率100%
在 Java 中,可以使用以下几种方法将字符串转换为整数:
1. 使用 Integer.parseInt() 方法
例如:
```
String str = "123";
int num = Integer.parseInt(str);
```
2. 使用 Integer.valueOf() 方法
例如:
```
String str = "123";
int num = Integer.valueOf(str);
```
3. 使用 Integer 包装类的构造函数
例如:
```
String str = "123";
Integer num = new Integer(str);
```
4. 使用 DecimalFormat 类的 parse() 方法
例如:
```
String str = "123";
DecimalFormat df = new DecimalFormat();
int num = df.parse(str).intValue();
```
注意,使用这些方法转换字符串时,如果字符串不是数字格式,会抛出 NumberFormatException 异常。因此,建议在使用这些方法前先进行异常处理。
阅读全文