在
byte[] buf = new byte[1024];
int len = -1;
while((len = i.read(buf)) != -1) {
System.out.println(new String(buf,0,len));
}
中len为啥定义为0或者-1?还有主要是len = i.read(buf)) != -1这句理解不了是啥意思?
亚努人
相关分类