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

使用Java FileInputStream读取文件内容到字节数组中

时间:2015-08-03 11:42:06      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

package date0802;

import java.io.FileInputStream;
import java.io.IOException;

public class InputStream {

	@SuppressWarnings("resource")
	public static void main(String[] args) throws IOException {
		FileInputStream fileInputStream = new FileInputStream("1.txt");
		//获取文件大小字节
		int length=fileInputStream.available();
		
		//读取文件字节到一个数组中
		int bytesRead=0;
		int bytesToRead=length;
		byte[] input=new byte[bytesToRead];
		while(bytesRead<bytesToRead) {
			int result=fileInputStream.read(input,bytesRead,bytesToRead-bytesRead);
			if(result==-1)
				break;
			bytesRead+=result;
		}
                fileInputStream.close();
		System.out.println((bytesRead==length));
	}
}


使用Java FileInputStream读取文件内容到字节数组中

标签:

原文地址:http://my.oschina.net/zzw922cn/blog/486990

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