为什么我的节目“必须被抓或被宣布被抛出”?

时间:2010-09-19 19:32:47

标签: java exception exception-handling

我已经在这个项目上工作了很长一段时间,而且我的大脑已经被炒了。我可以使用一些人的帮助。

我正在尝试创建一个逐行读取文本文件的程序,每行都被设置为ArrayList,这样我就可以访问每个令牌。我究竟做错了什么?

import java.util.*;
import java.util.ArrayList;
import java.io.*;
import java.rmi.server.UID;
import java.util.concurrent.atomic.AtomicInteger;

public class PCB {
    public void read (String [] args) {
        BufferedReader inputStream = null;

        try {
            inputStream = new BufferedReader(new FileReader("processes1.txt"));

            String l;
            while ((l = inputStream.readLine()) != null) {
                write(l);
            }
        }
        finally {
            if (inputStream != null) {
                inputStream.close();
            }
        }
    }

    public void write(String table) {
        char status;
        String name;
        int priority;

        ArrayList<String> tokens = new ArrayList<String>();

        Scanner tokenize = new Scanner(table);
        while (tokenize.hasNext()) {
            tokens.add(tokenize.next());
        }

        status = 'n';
        name = tokens.get(0);
        String priString = tokens.get(1);
        priority = Integer.parseInt(priString);

        AtomicInteger count = new AtomicInteger(0);
        count.incrementAndGet();
        int pid = count.get();

        System.out.println("PID: " + pid);
    }
}

我即将戳出我的眼球。我有三个错误:

U:\Senior Year\CS451- Operating Systems\Project1 PCB\PCB.java:24: unreported exception java.io.IOException; must be caught or declared to be thrown
            inputStream.close();}
                             ^
U:\Senior Year\CS451- Operating Systems\Project1 PCB\PCB.java:15: unreported exception java.io.FileNotFoundException; must be caught or declared to be thrown
        inputStream = new BufferedReader(new FileReader("processes1.txt"));
                                         ^
U:\Senior Year\CS451- Operating Systems\Project1 PCB\PCB.java:18: unreported exception java.io.IOException; must be caught or declared to be thrown
        while ((l = inputStream.readLine()) != null) {
                                        ^

我做错了什么?

6 个答案:

答案 0 :(得分:13)

当您在Java中使用I / O时,大多数情况下您必须处理IOException,这可能在您读/写甚至关闭流时发生。

您必须将敏感块放在try // catch块中并在此处理异常。

例如:

try{
    // All your I/O operations
}
catch(IOException ioe){
    //Handle exception here, most of the time you will just log it.
}

<强>资源:

答案 1 :(得分:8)

Java在编译时检查异常规范。您必须捕获异常或声明它在方法签名中抛出。以下是如何声明它可能会从您的方法中抛出:

   public void read (String [] args) throws java.io.IOException {

如果您的方法需要做出响应,请抓住异常。如果您的调用者需要知道失败,请将其声明为抛出。

这些不是相互排斥的。有时捕获异常,执行某些操作并重新抛出异常或包装原始异常(“原因”)的新异常很有用。

不需要声明RuntimeException及其子类。

答案 2 :(得分:0)

好的IDE将为您创建catch块或将异常添加到方法声明中。

请注意,如果根据Colin的解决方案向方法声明添加异常,则调用方法的任何方法也必须具有合适的catch块或在方法声明中声明异常。

答案 3 :(得分:0)

您宁愿做

try{
    // All your I/O operations
}
catch(Exception e){
    //Handle exception here, most of the time you will just log it.
}

通常来说,捕获类本身并决定您的逻辑是捕获还是执行instanceof(如果您需要非常特定的日志)并不是一个坏主意。

答案 4 :(得分:0)

每当“未报告的异常IOException;必须被捕获或声明为引发” 出现了此错误,然后需要将代码放入try catch块。 例子

try{
    // All your I/O operations
}
catch(IOException ioe){
    //Handle exception here, most of the time you will just log it.
}

答案 5 :(得分:-3)

我遇到了同样的问题。我通过添加弹簧库“org.springframework.core”来解决它。