Posted on 2007-03-13 17:34
锋出磨砺 阅读(1698)
评论(0) 编辑 收藏 所属分类:
java算法
int read = -1;
int size = 0;
while((read=inputstream.read(buffer))!=-1)
{
if(read>0)
{
byte[] chunk = new byte[read];
System.arraycopy(buffer,0,chunk,0,read);
chunks.add(chunk);
size += chunk.length;
}
}