要求:定义一个文件输入流,调用read(byte[] b)方法将exercise.txt文件中的所有内容打印出来(byte数组的大小限制为5)。
public static void print(){
BufferedReader br=null;
try{
br=new BufferedReader(new FileReader("exercise.txt"));
byte[] b=new byte[5];
int len=0;
while((len=br.read(b))!=-1){
System.out.print(new String(b,0,len));
}
}catch(IOException e){
throw e;
}finally{
if(br!=null)
try{
br.close();
}catch(IOException e){
throw e;
}
}
} |