我不知道如何插入一行代码来计算弹出框中输入的数字。基本上我不能输入超过5个数字。所以我认为某些if语句需要输入,我不知道该怎么做。
这是我的代码:
String number;
number = JOptionPane.showInputDialog("Enter Number");
JOptionPane.showMessageDialog(null,"The new result is" + number,"Results",
JOptionPane.PLAIN_MESSAGE);
System.exit(0);
由于
答案 0 :(得分:1)
while(true)
{
String number = JOptionPane.showInputDialog("Enter Number");
if(number.length() >5 )
{
JOptionPane.showMessageDialog(null ,"Too Long! try again",JOptionPane.PLAIN_MESSAGE);
}
else break;
}
答案 1 :(得分:0)
这有一些复杂因素,例如,您不检查非数字字符。
String number = JOptionPane.showInputDialog("Enter number");
number = number.trim(); // remove any spaces before and after
if (number.length() > 5 || hasNonNumeric(String)) {
// show message
JOptionPane.showMessageDialog(null,"Too long or non numeric characters in the string",
JOptionPane.PLAIN_MESSAGE);
}
boolean hasNonNumeric(String pSrc) {
for (char c : pSrc.toCharArray()) {
if (!Character.isDigit(c)) {
return true;
}
}
return false;
}
这有点安全。