码迷,mamicode.com
首页 > 编程语言 > 详细

learning java FileReader

时间:2019-08-05 14:15:48      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:learning   reader   div   str   not   style   ace   file   tst   

import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.nio.charset.Charset;

public class FileReaderTest {
    public static void main(String[] args) {
        try {
            var fr = new FileReader("FileReaderTest.java");
            {
                var cbuf = new char[1024];
                var hasRead = 0;
                while ((hasRead = fr.read(cbuf)) > 0){
                    System.out.println(new String(cbuf, 0, hasRead));
                }
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

 

learning java FileReader

标签:learning   reader   div   str   not   style   ace   file   tst   

原文地址:https://www.cnblogs.com/lianghong881018/p/11302418.html

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