美文网首页
JAVA I/O 简单读取

JAVA I/O 简单读取

作者: Garbo_W | 来源:发表于2019-02-11 20:39 被阅读0次

    package textMyself;

    import java.io.FileNotFoundException;

    import java.io.FileReader;

    import java .io.FileWriter;

    import java.io.IOException;

    public class Test {

    public static void main(String[] args) {

    // TODO Auto-generated method stub

    try {

    FileReader finput=new FileReader("这里写要读取的文本路径");

    int i=0;

    while ((i=finput.read())!=-1) {   //读取内容,直到文件尾

    System.out.print((char)i);  //打印内容

    }

    finput.close();

    }catch (FileNotFoundException e) {

    // TODO: handle exception

    e.printStackTrace();

    }catch(IOException e) {

    e.printStackTrace();

    }

    }

    }

    笔记:

    FileReader是用于读取字符流。 要读取原始字节流,请考虑使用FileInputStream 。

    相关文章

      网友评论

          本文标题:JAVA I/O 简单读取

          本文链接:https://www.haomeiwen.com/subject/zefxeqtx.html