1 package testDate;
2 import java.io.FileNotFoundException;
3 import java.io.FileReader;
4 import java.io.IOException;
5 public class TestReadFile {
6 public static void main(String[] args) {
7 FileReader reader = null;
8 try{
9 reader=new FileReader("d:/a.txt");
10 char c1=(char)reader.read();
11 char c2=(char)reader.read();
12 System.out.println(""+c1+c2);
13 }catch(FileNotFoundException e){
14 e.printStackTrace();
15 }catch(IOException e){
16 e.printStackTrace();
17 }finally{
18 try {
19 if(reader!=null){
20 reader.close();
21 }
22 } catch (IOException e) {
23 e.printStackTrace();
24 }
25 }
26 }
27 }
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步