I m reading a URL with the following code:
URL myURL = new URL("htpp://path_to_my_file");
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(myURL.openStream()));
while (reader.ready()) {
String line = reader.readLine();
...
}
} catch (IOException e) {
throw new RuntimeException("Parsing of file failed: " + myURL, e);
}
能否做到这一点,档案不是完全读吗? (由于网络问题或其他问题) 如果是,是否有办法加以测试,甚至避免?
背景: 我在申请中工作(我直到现在才提出),用户报告说,有些档案有时丢失。 偶然发生的情况是,我唯一的猜测是,在阅读档案时,有些事情有时失败了,但我很少敢肯定。