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

文件类练习题(FileInputStream类)

时间:2019-05-12 01:37:06      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:col   package   auto   style   color   trace   hello   pack   stream   

应用FileInputStream类,编写应用程序,从磁盘上读取一个Java程序,并将源程序代码显示在屏幕上。(被读取的文件路径为:d:/myjava/Hello.java 内容自己决定);

package stage3;

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.PrintStream;

public class Test6 {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        File f = new File("d:/data/Hello.java");
        try(FileInputStream fin = new FileInputStream(f);
        BufferedInputStream bin = new BufferedInputStream(fin);
        PrintStream ps = new PrintStream(System.out); ){
            byte [] b = new byte[(int)f.length()];
            bin.read(b);
            ps.println(new String(b,"gbk"));
        }catch(IOException e) {
            e.printStackTrace();
        }
        
        
    }

}

 

文件类练习题(FileInputStream类)

标签:col   package   auto   style   color   trace   hello   pack   stream   

原文地址:https://www.cnblogs.com/summerdata/p/10850635.html

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