错误: 未报告的异常错误IOException; 必须对其进行捕获或声明以便抛出 指明是reader.close();的问题
publicclassTest{publicstaticvoidmain(String[]args){BufferedReaderreader=null;try{read...
public class Test {
public static void main(String[] args) {
BufferedReader reader = null;
try{
reader = new BufferedReader(new FileReader(new File("D:\\abc.txt")));
while(true){
String s = reader.readLine();
System.out.println(s);
}
//这是从外部文档中读文件的,从键盘一般不用它,至少我没见过。。
}catch(Exception e){//已经读完文档
reader.close();
}
} 展开
public static void main(String[] args) {
BufferedReader reader = null;
try{
reader = new BufferedReader(new FileReader(new File("D:\\abc.txt")));
while(true){
String s = reader.readLine();
System.out.println(s);
}
//这是从外部文档中读文件的,从键盘一般不用它,至少我没见过。。
}catch(Exception e){//已经读完文档
reader.close();
}
} 展开
展开全部
一般来说,流应该在finally中关闭,给你个例子
try {
do something……
} catch (TemplateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally{
if (reader!=null) {
try {
reader.flush();
reader.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
try {
do something……
} catch (TemplateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally{
if (reader!=null) {
try {
reader.flush();
reader.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询