package com.itheima;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
/*
* 5、 定义一个文件输入流,调用read(byte[] b)方法将exercise.txt
* 文件中的所有内容打印出来(byte数组的大小限制为5,
* 不考虑中文编码问题)。
* 老师运行时请指定路径
*/
public class Test5 {
/**
*
*/
public static void main(String[] args)throws Exception {
// TODO Auto-generated method stub
//定义一个读取流
FileInputStream In=null;
//文件直接在main函数读取路径
File file =new File(args[0]);
In =new FileInputStream(file);
System.out.println("f");
//byte数组为5,没读取5个后,清理一次。把数组装进字符串打印
byte[] b =new byte[5];
while((In.read(b))!=-1){
if(b.length==5){
String Str =new String(b,0,b.length);
System.out.println(Str);
b =null;
b=new byte[5];
}
}
}
}
|