learning java FileReader
Posted lianghong881018
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了learning java FileReader相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章