我写了一段非常经典的代码来读取URL的内容。
// Prepares the connection
URL url = new URL(urlString);
URLConnection uc = url.openConnection();
// Reads the data
StringBuilder data;
String inputLine;
try (InputStreamReader isr = new InputStreamReader(uc.getInputStream(), "utf-8");
BufferedReader in = new BufferedReader(isr)) {
data = new StringBuilder();
while ((inputLine = in.readLine()) != null) {
data.append(inputLine);
}
}
// Returns the read data
return data.toString();
但有时,我正在读取的url包含太多数据,或者客户端连接太慢,或者其他什么。。。因此阅读花费了太多时间。
有没有办法为BufferedReader(或InputStreamReader,或URLConnection?)指定"最大读取时间"?理想情况下,它将在达到"最大读取时间"后抛出TimeoutException。
我做了一些研究,但我所能发现的只是收到的数据大小的限制,而不是执行时间的限制。
在开始读取之前只需调用URLConnection.setReadTimeout()
。如果超时超时,将抛出一个SocketTimeoutException
。