IO流,读取本地txt文件

时间:2021-07-13 20:58:55
package com.zk.test;


import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;


public class 读取文件 {
public static void main(String[] args) {
try {
FileReader fl = new FileReader(
"F:\\新建文件夹\\src\\File以及IO流\\src\\读取文件\\读.java");  //txt路径
for (;;) {
int a = fl.read();
if (a == -1) { //读到最后一个位置跳出
break;
}
char b = (char) (a-1); //转换成char类型
if(b==';'){
System.out.println();
}
System.out.print((char)a); //遍历输出
}
fl.close(); //关闭流
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}