0

我正在尝试调用创建文件的方法,但是我从执行的操作中调用该方法,它根本不能抛出 IOException ...

这是代码:

/* ACTION PERFORMED**/
public void actionPerformed(ActionEvent evt){
    Object source = evt.getSource();
    if (source == add)
    {
        String mothername = " ";
        String fathername = " ";
        String motherphone = " ";
        String fatherphone = " ";

        Patient patient = new Patient(...));

        printPatients(patient);

        System.out.println("past printing patient");

        writetoFile(patient); //giving an error
    }

    if (source == uadd)
    {
        Patient patient = new Patient(...));

        printPatients(patient);

        writetoFile(patient); //giving an error
    }
}

//This is the method I am trying to call

public static void writetoFile(Patient p) throws IOException
{
    RandomAccessFile inout = new RandomAccessFile("PatientsInfo.dat", "rw");

    inout.seek(inout.length());
    inout.writeUTF(p.getName());
    inout.writeUTF(p.getAge());
    inout.writeUTF(p.getGender());
    inout.writeUTF(p.getSiblings());
    inout.writeUTF(p.getID());
    inout.writeUTF(p.getNationality());
    inout.writeUTF(p.getCivilStatus());
    inout.writeUTF(p.getProfession());
    inout.writeUTF(p.getPhone1());
    inout.writeUTF(p.getPhone2());
    inout.writeUTF(p.getEmail());
    inout.writeUTF(p.getMotherName());
    inout.writeUTF(p.getFatherName());
    inout.writeUTF(p.getMotherPhone());
    inout.writeUTF(p.getFatherPhone());
    inout.writeUTF(p.getMedication());
    inout.writeUTF(p.getDoctorsName());
    inout.writeUTF(p.getFrequency());
    inout.writeUTF(p.getPrice());
    System.out.println("names and sentinel value sent to file Countries.dat");

    inout.close();
}

//错误在两条蓝线中,它显示的错误是:

Error: C:\Users\Pedro Quintas\Documents\Documents and Work
\Escola\Computer Science\Programs\Dossier\AddPatient.java:362:
unreported exception java.io.IOException; must be caught or
declared to be thrown

请告诉我要改变什么

4

1 回答 1

0

答案在错误消息中:) 你必须处理你的异常。当事情稍微有点歪斜时,他们不只是为了把事情搞砸——他们在那里是为了让你弄清楚当错误发生时你想如何处理你的错误。这意味着您必须考虑程序的哪些部分将处理错误条件,以及程序的哪些部分将假定错误不会发生。

您可能希望您的actionPerformed()方法在屏幕上放置一个错误对话框,以提醒用户“保存”按钮实际上丢弃了他们所有的工作。在这种情况下,将所有这些调用包装writeToFile()在 try/catch 块中并适当处理。

您可能希望将writeToFile()消息记录到记录您的应用程序的 log4j 实例,或者在写入失败时简单地向标准错误或标准输出吐出一些东西。throws IOException在这种情况下,从你的undelcare中writeToFile(),将方法的内容包装在一个 try/catch 块中并适当地处理。

至少根据我的经验,处理错误是大多数应用程序的大部分代码。遗憾的是,学校没有教得更好,但这是您通过在这里尝试我的两个建议并注意程序中其他地方的影响来了解您的设计权衡的机会。

于 2011-01-21T13:37:39.540 回答