[quote]
[/quote]
package day02;
import java.io.FileInputStream;
public class FileIoTest {
public static void main(String[] args) throws Exception {
test1();
}
static void test1() throws Exception {
FileInputStream in = new FileInputStream(
"/home/soft20/Desktop/123.txt/");
// int i;//单个字节的循环读取;
// while((i=in.read())!=-1){
// char ch = (char)i;
// System.out.print(ch);
// }
// 采用数组方式来多量读取;
// byte[] b = new byte[10];
// int i;
// while((i=in.read(b))!=-1){
// for(int m =0;m<b.length;m++){
// System.out.print((char)b[m]);
// }
byte[] b = new byte[10];
int i;
while((i=in.read(b))!=-1){
//采用String构造来把byte的数组重新组成一个新的字符串;
System.out.println(new String(b,0,b.length));
}
//综上所述,我们可以这么理解read()方法,它只是拿数据存放在byte型的单个字符,或者byte的数组等等当中,
//所以要读取数据时,就只从byte,或数组当中取就可以了;
}
}
[/quote]