Android - 标题内容长度等于-1

时间:2012-04-22 18:43:48

标签: android file download size content-length

我正在我的Android应用程序中下载文件,我想显示进度条。我需要使用此方法知道文件总大小:here。 问题是我总是得到-1,尽管它已经设置在服务器上,我可以从我的电脑上看到它。

这是代码:

URL url = new URL(fileUrl);
URLConnection ucon = url.openConnection();
ucon.connect();
int length = ucon.getContentLength();

有什么问题?

1 个答案:

答案 0 :(得分:-1)

这与Android无关,很可能它不是从服务器发送的。请使用任何嗅探工具来确保内容长度标题在那里。