我使用以下代码从URL下载文件..
while(status==Status.DOWNLOADING){
HttpURLConnection conn=(HttpURLConnection)url.openConnection();
conn.connect();
int size=conn.getContentLength();
BufferedInputStream bin=new BufferedInputStream(conn.getInputStream());
byte[] buffer=new byte[1024];
int read=bin.read(buffer);
if(read==-1)
break;
downloaded+=read;
}
对于某些URL的read()方法,在读取下载大小(内容长度)之前返回-1 ..
任何人都可以建议我,这段代码发生了什么......
请提供您的建议..
答案 0 :(得分:1)
无法保证网络服务器在http标头中提供内容长度。因此,你不应该依赖它。只需阅读这样的流:
ByteArrayOutputStream bos = new ByteArrayOutputStream();
byte[] buf = new byte[1024];
int len;
while ((len = bin.read(buf)) > 0) {
bos.write(buf, 0, len);
}
byte[] data = bos.toByteArray();