当前位置: 技术问答>java相关
把String 转换成 int 怎么做
来源: 互联网 发布时间:2015-07-13
本文导语: 把从jField中得到的字符串,转换成数字型, 如 String Str1="1234"; int num1; 怎样使 num1=1234 ? 多中方法;写出来给分! | String str = "1234"; int num = new Integer(str).intValue(); | ...
把从jField中得到的字符串,转换成数字型,
如 String Str1="1234";
int num1;
怎样使 num1=1234 ?
多中方法;写出来给分!
如 String Str1="1234";
int num1;
怎样使 num1=1234 ?
多中方法;写出来给分!
|
String str = "1234";
int num = new Integer(str).intValue();
int num = new Integer(str).intValue();
|
这种问题不要再问了
已经被问过 N 遍了
1.
String Str1="1234";
int n = new Integer(Str1).intValue();
2.
String Str1="1234";
int i =Integer.parseInt(Str1);
已经被问过 N 遍了
1.
String Str1="1234";
int n = new Integer(Str1).intValue();
2.
String Str1="1234";
int i =Integer.parseInt(Str1);
|
try{
String s = "4321";
int i = Integer.parseInt(s);
}catch(NumberFormatException e)
好象叫这名字把....
String s = "4321";
int i = Integer.parseInt(s);
}catch(NumberFormatException e)
好象叫这名字把....
|
还要写出例外捕获语句!
|
我也只知道以上两种方法了。
UP
UP
|
String Str="1234";
int num1;
num1=Integer.parseInt(Str1);
int num1;
num1=Integer.parseInt(Str1);
|
String s = "4321";
int i = Integer.parseInt(s);
System.out.println(i);
//4321
int i = Integer.parseInt(s);
System.out.println(i);
//4321