是否可以使用HttpClient下载PDF等文件?

时间:2012-05-26 23:19:20

标签: java pdf httpurlconnection apache-commons-httpclient

我在这里找到了一些关于如何下载文件的例子,但其中大多数似乎都在使用HttpURLConnection。是否可以使用HttpClient下载文件?

2 个答案:

答案 0 :(得分: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.
}

答案 1 :(得分:1)

您可以使用HttpURLConnection做的任何事情,通常情况下更好,HttpClient查看有关文件传输的示例,您将看到如何。