码迷,mamicode.com
首页 > 其他好文 > 详细

【字符输入流:InputStreamReader】

时间:2018-11-12 15:47:45      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:void   char   输入流   pictures   code   exception   oid   user   desc   

package test;

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

/**
 * @author shusheng
 * @description
 * @Email shusheng@yiji.com
 * @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】

标签:void   char   输入流   pictures   code   exception   oid   user   desc   

原文地址:https://www.cnblogs.com/zuixinxian/p/9946544.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!