HttpInputStream read()方法失败

时间:2011-06-19 19:08:14

标签: java inputstream urlconnection

我使用以下代码从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 ..

任何人都可以建议我,这段代码发生了什么......

请提供您的建议..

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();