概述
/**
* 获取外网物理文件
* @param filePath 存放在数据库中的文件地址,如/upload/test.jpg
* @throws Exception
*/
@SuppressWarnings("unused")
private void getFiles(String filePath) throws Exception
{
try
{
File storeFile = new File(request.getSession().getServletContext().getRealPath("")+filePath);
if (!storeFile.exists())
{
HttpClient client = new HttpClient();
GetMethod get = new GetMethod(Resources.getProperty("WAN_SITE_URL")+filePath);
client.executeMethod(get);
storeFile.createNewFile();
FileOutputStream output = new FileOutputStream(storeFile);
//得到网络资源的字节数组,并写入文件
output.write(get.getResponseBody());
output.close();
}
}
catch (Exception e)
{
e.printStackTrace();
throw new AGPException("WAN_NET_ERROR");
}
}
使用HttpClient远程抓取网页内容:http://www.cnblogs.com/modou/articles/1325569.html
最后
以上就是美丽高跟鞋为你收集整理的HttpClient远程抓取图片到本地的全部内容,希望文章能够帮你解决HttpClient远程抓取图片到本地所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复