byte[] byte = new byte[1024];
int len =0 ;
while((len=in.read(b))!=-1){
out.write(b,0,len);
}
read函数返回的是缓冲数组中实际上读入的字节数,无论是read(byte[] b) 还是 read(byte[] b,int off,int length)。对于read(byte[] b),它默认执行read(byte[] b,0,b.length)。所以应该可以用read(byte[] b)代替的 。
解释如下:
如果说在读到最后一组的时候,缓冲数组没有满,len值很有用。
public abstract int read( ):读取一个byte的数据,返回值是高位补0的int类型值。若返回值=-1说明没有读取到任何字节读取工作结束。