InputStream 一个字节一个字节的读取

来源:互联网 发布:python图像识别汉字 编辑:程序博客网 时间:2024/05/10 00:20
package chap10.sec03;


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


public class Demo4 {


public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
File file =new File("D:/测试文件.txt");
InputStream in=new FileInputStream(file);//实例化FileInputStream
int fileLength=(int)file.length();
byte b[]=new byte[fileLength]; 
int temp=0;
int len=0;
while((temp=in.read())!=-1){
b[len++]=(byte) temp;
}
in.close();
System.out.println("读取到的内容是:"+new String(b));
}


}
1 0
原创粉丝点击