好的,所以我有一个文本框。这个文本框里面写着BLAHH这个词。我没有得到的部分是如何将TextBox中的文本更改为Int?我已经尝试将Int放入字符串形式。我不是试图将字符串放回Int形式。我试图让字符串更改显示int数字的文本...
//---- Money ----
String str = Integer.toString(money);
Money.setText(str);
add(Money, CC.xy(21, 1));
P.S。我正在使用Eclipse的JFormDesigner插件!
答案 0 :(得分:3)
如果您有一个字符串“str”,您可以使用它将其转换为int:
String str = Money.getText();
try {
int number = Integer.parseInt(str);
}
catch (NumberFormatException e) {
//What to do if Money did not hold an int?
}