欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java使用IO流读取文件显示到控制台1

程序员文章站 2022-05-04 12:05:18
package com.io.exam; import java.io.FileReader; import java.io.IOException; /** * 不带行号的 */ public class TextFileExam { public static void main(String[ ......
package com.io.exam;

import java.io.filereader;
import java.io.ioexception;

/**
 * 不带行号的
 */
public class textfileexam {
     
    public static void main(string[] args) {
        // 1、创建filereader 的实例,同时打开指定文件
        filereader filereader = null;

        try {
            filereader = new filereader("读取文件路径");
            // 2、读取指定文件的内容并打印到控制台
            char cbuf[] = new char[1024];
            int len = 0;

            while ((len = filereader.read(cbuf)) != -1) {
                system.out.println(new string(cbuf, 0, len));
            }
        } catch (ioexception e) {
            e.printstacktrace();
        }
        if (filereader != null) {
            try {
                filereader.close();
            } catch (ioexception e) {
                e.printstacktrace();
            }
        }

    }

}