import java.io.*;
public class TestException1 {
public static void main(String[] args){
FileReader reader = null;
try{
reader = new FileReader("d:/a.txt");
char temp = (char)reader.read();
System.out.println("读出的内容:"+temp);
}catch(FileNotFoundException e){
System.out.println("文件没有找到!!");
e.printStackTrace();
}catch(IOException e){
System.out.println("读取文件错误");
}finally {
System.out.println("不管有没有异常,我肯定会被执行!!");
try{
reader.close();
}catch(IOException e){
e.printStackTrace();
}
}
}
}
try-catch-fianlly
最新推荐文章于 2024-03-27 14:44:13 发布