while((fs=mfi.read())>0){
nfi.write(date,0,fs);
}
public int read()
throws IOException从此输入流中读取一个数据字节。如果没有输入可用,则此方法将阻塞。
read
public int read(byte[] b)
throws IOException从此输入流中将最多 b.length 个字节的数据读入一个 byte 数组中。在某些输入可用之前,此方法将阻塞。
read签名不一样,主要参数方法重载呀!!!!!!!! |
|