我是靠谱客的博主 美丽高跟鞋,最近开发中收集的这篇文章主要介绍HttpClient远程抓取图片到本地,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 /**
	 * 获取外网物理文件
	 * @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远程抓取图片到本地所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部