InputStreamReader介绍&代码实现和练习_转换文件编码

InputStreamReader介绍&代码实现

java.io.InputStreamReader extends Reader

InputStreamReader:是字节流通向字符流的桥梁:它使用指定的 charset 读取字节并将其解码为字符。(解码:把看不懂的变成能看懂的)

有继承自父类的共性成员方法:

构造方法:

  InputStreamReader(InputStream in) 创建一个使用默认字符集的 InputStreamReader。

  InputStreamReader(InputStream in, String charsetName)创建使用指定字符集的 InputStreamReader。

参数:

  InputStream in:字节输入流,用来读取文件中保存的字节

  String charsetName: 指定的编码表名称, 不区分大小写,可以是utf-8/UTF-8,gbk/GBK,...不指定默认使用UTF-8

注意事项:

  构造方法中指定的编码表名称要和文件的编码相同, 否则会发生乱码

    /*
        使用InputStreamReader读取UTF-8格式的文件
     */
    private static void r_utf_8() throws IOException {
        //1.创建InputStreamReader对象,构造方法中传递字节输入流和指定的编码表名称
        InputStreamReader isr = new InputStreamReader(new FileInputStream("F:\\B.txt"), "UTF-8");
        //2.使用InputStreamReader对象中的方法read读取文件
        int len = 0;
        while ((len=isr.read())!=-1){
            System.out.println((char) len);
        }
        isr.close();
    }

    /*
        使用InputStreamReader读取GBK格式的文件
     */
    private static void r_gbk() throws IOException {
        //1.创建InputStreamReader对象,构造方法中传递字节输入流和指定的编码表名称
        //InputStreamReader isr = new InputStreamReader(new FileInputStream("F:\\GBK.txt"), "UTF-8");//???
        InputStreamReader isr = new InputStreamReader(new FileInputStream("F:\\GBK.txt"), "GBK");//你好
        //2.使用InputStreamReader对象中的方法read读取文件
        int len = 0;
        while ((len=isr.read())!=-1){
            System.out.println((char) len);
        }
        isr.close();
    }

 

 

练习_转换文件编码

将GBK编码的文本文件,转换为UTF-8编码的文本文件。

    private static void show() throws IOException {
        //1.创建InputStreamReader对象,构造方法中传递字节输入流和指定的编码表名称GBK
        InputStreamReader isr = new InputStreamReader(new FileInputStream("F:\\GBK.txt"), "GBK");
        //2.创建OutputStreamWriter对象,构造方法中传递字节输出流和指定的编码表名称UTF-8
        OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("F:\\B.txt"), "UTF-8");
        //3.使用InputStreamReader对象中的方法read读取文件
        int len = 0;
        while ((len=isr.read())!=-1){
            osw.write(len);
        }
        //4.使用OutputStreamWriter对象中的方法write,把读取的数据写入到文件中
        osw.close();
        isr.close();
    }

 

 

posted @ 2022-07-18 10:33  魔光领域  阅读(505)  评论(0编辑  收藏  举报