码迷,mamicode.com
首页 > 编程语言 > 详细

java_io_FileInputStream

时间:2016-12-26 16:43:12      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:ack   exception   str   port   final   stat   []   null   bsp   

package Stream;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;

public class TestfFileInputStream {
    
    public static void main(String[] args) {
        FileInputStream fis=null;
        try {
            //1.创建一个文件输入流
            fis =new FileInputStream("D:\\temp\\main函数的调用.txt");
            //2.创建一个byte数组来存储读取的信息
            byte buf[]=new byte[1024];
            //3.使用len读取的长度
            int len=0;
            //4.循环读取数据
            //只要len>0说明读取刀元素,可以直接对元素进行操作
            while((len=fis.read(buf))>0){
                //5.通过控制台输出数据
                //len记录了缓存区的有效长度,因此从0输出到len
                System.out.write(buf,0,len);
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }finally{
            //6.读取完成后必须关闭流释放资源
            //在这个位置关闭流
            if(fis!=null)
                try {
                    fis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
        }
    }

}

java_io_FileInputStream

标签:ack   exception   str   port   final   stat   []   null   bsp   

原文地址:http://www.cnblogs.com/hjs775756009/p/6222503.html

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