gpt4 book ai didi

java - 未报告的异常 IOException 从 URL 读取文件

转载 作者:行者123 更新时间:2023-11-30 08:10:51 26 4
gpt4 key购买 nike

我已经查看了所有 SO,但尚未找到解决方案。总之,我正在尝试从提供的 URL 中获取文本文件并将其读入字符串,以便我可以用它做其他事情。

具体编译错误为:

/tmp/java_kWWEO5/Main.java:49: error: unreported exception IOException; must be caught or declared to be thrown
String text = readUrlTextContent("http://textfiles.com/stories/antcrick.txt");
^
1 error

导致错误的代码,在main中:

import java.util.*;
import java.net.URL;
import java.net.MalformedURLException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;

public class Main {

private static String readUrlTextContent(String url) throws IOException, MalformedURLException {

URL source = new URL(url);
BufferedReader reader = new BufferedReader(new InputStreamReader(source.openStream()));
try {
StringBuilder builder = new StringBuilder();
String line = reader.readLine();

while (line != null) {
builder.append(line);
builder.append("\n");
line = reader.readLine();
}
return builder.toString();
} catch (MalformedURLException urlEx) {
urlEx.printStackTrace();
throw new RuntimeException("Malformed URL Exception", urlEx);
} catch (IOException ioEx) {
ioEx.printStackTrace();
throw new RuntimeException("IO Exception", ioEx);
} finally {
reader.close();
}
}

public static void main(String[] args) {

String text = readUrlTextContent("http://textfiles.com/stories/antcrick.txt");
System.out.println(text);
}
}

我该怎么做才能修改这个短程序,使其最终编译并执行?

最佳答案

虽然您实际上通过将它们包装到 RuntimeException 中来处理方法主体中的这些异常,但您的方法签名“存在于”编译器中:

private static String readUrlTextContent(String url) throws IOException, MalformedURLException {

将此行更改为:

private static String readUrlTextContent(String url) {

那应该解决编译器消息


您在这里遇到的问题是检查异常所固有的。当一个方法声明它抛出某种异常类型时,编译器需要检查这些异常是否得到处理。

这意味着,即使您在方法主体中正确地捕获了异常,编译器也必须假定,这些异常可能会发生。

相应地,每当 reaadUrlTextContent 被调用时,编译器都会检查“Does the caller handle these exceptions?”

如果来电者不...那么这就是你得到的 :)

让您的案例更有趣的是 MalformedURLExceptionIOException 的子类。这意味着每当您捕获(或抛出)IOException 时,MalformedURLException 将以相同的方式处理,前提是它尚未被捕获。

关于java - 未报告的异常 IOException 从 URL 读取文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31465447/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com