ここでファイルをダウンロードする方法の例をいくつか見つけましたが、それらのほとんどは HttpURLConnection を使用しているようです。HttpClient でファイルをダウンロードすることはできますか?
質問する
19753 次
2 に答える
20
httpclient の使用は非常に簡単です。ここにそのチュートリアルへのリンクがあります。
http://hc.apache.org/httpcomponents-client-ga/tutorial/html/fundamentals.html#d5e43
HttpClient httpclient = new DefaultHttpClient();
HttpGet httpget = new HttpGet(urltofetch);
HttpResponse response = httpclient.execute(httpget);
HttpEntity entity = response.getEntity();
if (entity != null) {
long len = entity.getContentLength();
InputStream inputStream = entity.getContent();
// write the file to whether you want it.
}
于 2012-05-27T03:47:53.203 に答える
1
ファイル転送に関する彼らの例を見ると、あなたができることは何でもできHttpURLConnection
ます。通常はより良い方法です。HttpClient
于 2012-05-26T23:28:32.807 に答える