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

FileInputStream利用缓冲数组读取数据

时间:2016-11-13 22:20:45      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:package   blog   log   不能   取数   sys   out   rgs   操作   

package cd.itcast.fileinputstream;

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

public class Demo1 {
    public static void main(String[] args) throws IOException {
        //目标文件
        File file =new File("E:\\a.txt");
        //创建通道
        FileInputStream fileInputStream = new FileInputStream(file);
        //创建缓冲数组
        byte[] buf = new byte[1024];
        //用数组去读取数据,此时read()返回,读取的数量,当读到空时,返回-1.
        while (fileInputStream.read(buf)!=-1) {
            System.out.println("内容:"+new String(buf));
        }
        //关闭
        fileInputStream.close();
    }
}

注意:

       最后要关闭资源  fileInputStream.close();假如不释放资源,其他程序是不能操作该资源的。比如,不能删除正在被使用的资源。

 

FileInputStream利用缓冲数组读取数据

标签:package   blog   log   不能   取数   sys   out   rgs   操作   

原文地址:http://www.cnblogs.com/h-g-f-s123/p/6059855.html

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