以下是一个简短的示例代码:
double num = 0.00;
try
{
num = Double.parseDouble(JOptionPane.showInputDialog("Enter your num:"));
}
catch (Exception e)
{
System.err.println("Error: Invalid Input!");
JOptionPane.showMessageDialog(null, "Error: Invalid Input!",
"Error", JOptionPane.ERROR_MESSAGE);
}
//Validate the num
if (num > 0.0 && num <= 1000.00)
{
functionA();
}
else if (deposit <= 0.0 || deposit > 1000.00)
{
System.err.println("Error: out of range");
}
*上面代码的问题是当我点击“取消”按钮时,程序会同时出现两个错误:(超出范围和输入无效)。
请告诉我如何解决这个问题?
提前致谢
答案 0 :(得分:4)
首先,您需要验证输入是否为空。如果没有,那么你就可以使用parseDouble了。
像这样:
try
{
String i = JOptionPane.showInputDialog("Enter your num:");
if (i != null)
num = Double.parseDouble(i);
}
此外,尝试不像你那样通过“异常”来捕获异常。始终尝试尽可能地指定您要查找的例外。 在这种情况下,您应该使用NumberFormatException而不仅仅是Exception。
catch (NumberFormatException e)
{
System.err.println("Error: Invalid Input!");
JOptionPane.showMessageDialog(null, "Error: Invalid Input!",
"Error", JOptionPane.ERROR_MESSAGE);
}
答案 1 :(得分:1)
package org.life.java.so.questions;
import java.text.ParseException;
import javax.swing.JOptionPane;
/**
*
* @author Jigar
*/
public class InputDialog {
public static void main(String[] args) throws ParseException {
String input = JOptionPane.showInputDialog("Enter Input:");
if(input == null){
System.out.println("Calcel presed");
}else{
System.out.println("OK presed");
}
}
}