JAVA中int怎么转换String类型?

2024-11-22 15:35:34
推荐回答(2个)
回答1:

Integer.parseInt((String)myCourseList.getSelectedValue());
先转String
或者 这样也可以
((Integer)myCourseList.getSelectedValue()).intValue();

说明你的值有问题!!
System.out.print((String)myCourseList.getSelectedValue());
你打印出来看看 有可能是空 "" 或者不是数字
String demo =(String)myCourseList.getSelectedValue();
demo = demo.equst("")?"0":demo;
//如果是空替换为0就可以了

回答2:

Integer.ParseInt()

你加什么双引号啊,去掉