我正在尝试在下载之前获取文件的大小。我使用conn.getContentLength();
来执行此操作,它在我的家用计算机Android 2.1 Emulator上运行良好。
然而,一旦我从手机(WiFi或3G)运行我的应用程序,它就无法工作,当我从我的工作笔记本电脑Android 2.1仿真器运行它时,它也无效。
有没有人知道这方面的解决方法?有没有其他方法可以不使用HttpURLConnection
来获取文件的大小。
答案 0 :(得分:1)
此信息并非始终可用。通常,您将知道要下载的文件的长度。根据网络服务器,协议,连接和下载方法,此信息可能并不总是可用。
您绝对应该修改您的应用程序,以便它可以处理这种情况。我想你会发现使用不同连接方法的不同设备会提供不同的结果。
答案 1 :(得分:0)
使用HttpVersion.HTTP_1_0
进行文件下载。这可以防止使用“Chunked transfer encoding”
请参阅:http://en.wikipedia.org/wiki/Chunked_transfer_encoding
例如,重载构造函数,以便您可以指定哪个HTTP版本:
public class HTTPrequest
{
//member variables
private SchemeRegistry mSchemeRegistry;
private HttpParams mHttpParams;
private SingleClientConnManager mSCCmgr;
private HttpClient mHttpClient;
private HTTPrequestListener mHTTPrequestListener = null;
//constants
private final int TIMEOUT_CONNECTION = 20000;//20sec
private final int TIMEOUT_SOCKET = 30000;//30sec
//interface for callbacks
public interface HTTPrequestListener
{
public void downloadProgress(int iPercent);
}
/**
* Creates an HttpClient that uses plain text only.
* note: Default constructor uses HTTP 1.1
*/
public HTTPrequest()
{
this(HttpVersion.HTTP_1_1);
}
/**
* Creates an HttpClient that uses plain text only.
* @param httpVersion HTTP Version (0.9, 1.0, 1.1)
*/
public HTTPrequest(HttpVersion httpVersion)
{
//define permitted schemes
mSchemeRegistry = new SchemeRegistry();
mSchemeRegistry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
//define http parameters
mHttpParams = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(mHttpParams, TIMEOUT_CONNECTION);
HttpConnectionParams.setSoTimeout(mHttpParams, TIMEOUT_SOCKET);
HttpProtocolParams.setVersion(mHttpParams, httpVersion);
HttpProtocolParams.setContentCharset(mHttpParams, HTTP.UTF_8);
//tie together the schemes and parameters
mSCCmgr = new SingleClientConnManager(mHttpParams, mSchemeRegistry);
//generate a new HttpClient using connection manager and parameters
mHttpClient = new DefaultHttpClient(mSCCmgr, mHttpParams);
}
public void setHTTPrequestListener(HTTPrequestListener httpRequestListener)
{
mHTTPrequestListener = httpRequestListener;
}
//other methods for POST and GET
}
当您想要使用HTTPrequest httpRequest = new HTTPrequest(HttpVersion.HTTP_1_0);
进行文件下载时,如果要进行POST或GET,请使用HTTPrequest httpRequest = new HTTPrequest();