抛出和捕获自定义异常

时间:2015-05-05 07:34:58

标签: java file exception exception-handling fileopendialog

我有一种方法来加载客户文件,方法是从文件打开对话框中选择它,它可以正常工作,除非我单击取消按钮。即使按下“取消”按钮,它仍会加载所选文件。如果单击“取消”按钮,我想加载自定义异常。有关如何在我的方法中实现自定义异常的任何帮助吗?感谢

 private void loadCustomerActionPerformed(java.awt.event.ActionEvent evt) {
   Customer customerfile = null;
   try {

     final JFileChooser chooser = new JFileChooser("Customers/");
     int chooserOption = chooser.showOpenDialog(null);
     chooserOption = JFileChooser.APPROVE_OPTION;

     File file = chooser.getSelectedFile();
     ObjectInputStream in = new ObjectInputStream(
       new FileInputStream(file)
     );

     customerfile = (Customer) in .readObject();

     custnameTF.setText(customerfile.getPersonName());
     custsurnameTF.setText(customerfile.getPersonSurname());
     custidTF.setText(customerfile.getPersonID());
     custpassidTF.setText(customerfile.getPassaportID());
     customertellTF.setText(customerfile.getPersonTel());
     customermobTF.setText(customerfile.getPersonMob());
     consnameTF.setText(customerfile.getConsultantname());
     conssurnameTF.setText(customerfile.getConsultantsurname());
     considTF.setText(customerfile.getConsulid());

     in .close();

   } catch (IOException ex) {
     System.out.println("Error Loading File" + ex.getMessage());
   } catch (ClassNotFoundException ex) {
     System.out.println("Error Loading Class");
   } finally {
     System.out.println("Customer Loaded");
   }

 }

4 个答案:

答案 0 :(得分:3)

看起来你正在进行任务而不是对选择器的结果进行测试。

而不是

chooserOption = JFileChooser.APPROVE_OPTION;
你应该

if (chooserOption == JFileChooser.APPROVE_OPTION) {
    // handle open file
} else {
    throw new CancelException();
}

修改

在回应注释时,异常应该扩展Exception(对于已检查的异常),RuntimeException(对于未经检查的异常)或其中一个类的后代。此级别的唯一区别是您不需要在方法签名的throws中声明未经检查的异常。你的例外看起来像这样

public class CancelException extends Exception {

    public CancelException() {
    }

    public CancelException(String message) {
        super(message);
    }
}

另一条评论 - 例外应用于特殊情况。使用它们来实现逻辑通常被认为是不好的做法 - 你真的需要使用异常吗?

答案 1 :(得分:2)

让您的方法声明来提取您的例外:

private void loadCustomerActionPerformed(java.awt.event.ActionEvent evt)
    throws CustomException {

您总是APPROVE_OPTION给予chooserOption:

 chooserOption = JFileChooser.APPROVE_OPTION; 

您必须创建对话框按钮侦听器才能修改此变量并添加条件:

if (chooserOption == JFileChooser.APPROVE_OPTION) {
    // load file
} else {
    throw new CustomException("ERROR MESSAGE");
}

您的CustomException班级必须如下:

class CustomExceptionextends Exception {
    public CustomException(String msg) {
        super(msg);
    }
}

答案 2 :(得分:1)

您不应将任何内容分配给chooserOption。您应该使用返回值JFileChooser.showOpenDialog(),它包含有关对话框显示结果的信息。 例如:

int chooserOption = chooser.showOpenDialog(null);
if (chooserOption == JFileChooser.CANCEL_OPTION) {
   // throw your exception (or do some other actions) here
}

答案 3 :(得分:0)

你没有使用chooserOption,一旦它选择了值,只需添加一个检查chooserOption值的if条件,如果选中,执行则抛出异常