当前位置: 技术问答>java相关
String 到 int 的转换?
来源: 互联网 发布时间:2015-03-06
本文导语: int i; String str"1"; i=(int)str; 这样写,JBuilder 没有提示错误, 我写的 jsp 中却说不能转换!why? | 找不到也可自己写 int i,length,temp; char []a; temp=0; i=0; ...
int i;
String str"1";
i=(int)str;
这样写,JBuilder 没有提示错误,
我写的 jsp 中却说不能转换!why?
String str"1";
i=(int)str;
这样写,JBuilder 没有提示错误,
我写的 jsp 中却说不能转换!why?
|
找不到也可自己写
int i,length,temp;
char []a;
temp=0;
i=0;
String str="354545";
length=str.length();
a = new char[length];
a=str.toCharArray();
//char a;
//a='1';
for (int w = 0;w0;h--)
{
//temp=h-48;
temp=h*10;
}
i=i*temp+((int) a[w]-48);
}
int i,length,temp;
char []a;
temp=0;
i=0;
String str="354545";
length=str.length();
a = new char[length];
a=str.toCharArray();
//char a;
//a='1';
for (int w = 0;w0;h--)
{
//temp=h-48;
temp=h*10;
}
i=i*temp+((int) a[w]-48);
}