首页 > 其他 > 详细

IO之读入文件

时间:2014-08-18 20:07:32      阅读:240      评论:0      收藏:0      [点我收藏+]

整个java.io包中最重要的就是5个类和一个接口,5个类指的是File,OutputStream,InputStream,Reader,Writer;一个接口是Serializable。

在整个io包中,唯一与文件本身有关的类就是file类。

 

import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;

public class InpuStreamDemo01 {
    public static void main(String[] args) throws Exception {
        File f = new File("f:" + File.separator + "mail1.txt");
        InputStream input = null;
        input = new FileInputStream(f);
        byte b[] = new byte[(int) f.length()];
        input.read(b);
        input.close();
        System.out.println("Content is :" + new String(b));

    }
}

IO之读入文件,布布扣,bubuko.com

IO之读入文件

原文:http://www.cnblogs.com/vonk/p/3920129.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!