字符输入转换流&字符输出转换流
字符输入转换流&字符输出转换流
package newTest;
import java.io.*;
public class test2 {
//目标: 掌握字符输入转换流
public static void main(String[] args) {
try(
//文件管道对象
//得到原始的字节编码
InputStream fs=new FileInputStream( "src/zFIle/zhuanhuan.txt");
//读取指定的字节编码格式
Reader is= new InputStreamReader(fs,"GBK");
//缓冲池
BufferedReader br= new BufferedReader(is);
) {
String c;
while ((c=br.readLine())!=null){
System.out.println(c);
}
//创建读取文件按
} catch (Exception e) {
e.printStackTrace();
}
}
}