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

IO之读入文件

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

标签:java   os   io   文件   ar   new   ad   on   

整个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之读入文件

标签:java   os   io   文件   ar   new   ad   on   

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

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