赞
踩
在 Java 中要将 String 类型转化为 int 类型时,需要使用 Integer 类中的parseInt() 方法或者valueOf() 方法进行转换.
例1:
1
2
3
4
5
6
Stringstr=“123”;
try{
inta=Integer.parseInt(str);
}catch(NumberFormatExceptione){
e.printStackTrace();
}
例2:
1
2
3
4
5
6
Stringstr=“123”;
try{
intb=Integer.valueOf(str).intValue()
}catch(NumberFormatExceptione){
e.printStackTrace();
}
在转换过程中需要注意,因为字符串中可能会出现非数字的情况,所以在转换的时候需要捕捉处理异常
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。