字符输入流:InputStreamReader

Posted zuixinxian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符输入流:InputStreamReader相关的知识,希望对你有一定的参考价值。

package test;

import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;

/**
 * @author shusheng
 * @description
 * @Email [email protected]
 * @date 2018/11/12 11:00
 */
public class InputStreamReaderDemo1 {

    public static void main(String[] args) throws IOException {
        InputStreamReader isr = new InputStreamReader(
                new FileInputStream("C:\Users\shusheng\Pictures\111.txt"));
        char[] chs = new char[1024];
        int len = 0;
        while ((len = isr.read(chs)) != -1) {
            System.out.println(new String(chs, 0, len));
        }
        isr.close();
    }

}

 

以上是关于字符输入流:InputStreamReader的主要内容,如果未能解决你的问题,请参考以下文章

java: InputStreamReader将字节的输入流变成字符的输入流,OutputStreamWriter将字符的输出流变成字节的输出流

字符输入流:InputStreamReader

java 21 - 3 字符输入流

75. InputStreamReader和OutputStreamWriter(转换流--字节流转换成字符流)

IO流22 - 字符流 - 转换流OutputStreamWrite和InputStreamReader

scanner--inputstreamreader--console对比