我试图访问我创建的jtable中的值,并在计算中使用它(简单加法)。
String orderSize = (tableModel.getValueAt(2,3)).toString();
// I've tried a few ways to create an integer variable, it is not working here
int orderSizeInt = orderSize.parseInt();
int orderSizeInt2 = orderSize.valueOf(tableModel.getValueAt(2,3));
在使用parseint()时,我遇到了错误“类型字符串的方法parseint()未定义”,对此我感到困惑。
另外,在第二行中,我又得到两个错误。第一,“不能从字符串转换为int”。另一个是,应该以静态方式访问类型字符串中的静态方法valueof(object)。
我真的很困惑,非常感谢您的帮助!
暂无答案!
目前还没有任何答案,快来回答吧!