原文:简单的图片抓取demo
源代码下载地址:http://www.zuidaima.com/share/1568741405854720.htm
昨天看到同学在一张张右键图片,感觉好麻烦,今天上午就查了一下资料,弄了个图片抓取器。
用到jsoup和 io包,我放在压缩文件里了。
新手刚刚弄,可能会有考虑不好的地方,欢迎大家多多指教。
主要代码:
01 |
//遍历保存 |
02 |
Iterator<String>
i = imgSrcSet.iterator(); |
03 |
while (i.hasNext()){ |
04 |
|
05 |
String
imgSrc = (String)i.next(); |
06 |
String
imgName = FilenameUtils.getName(imgSrc); |
07 |
|
08 |
if (imgName.indexOf( "." )
!= - 1 )
{ |
09 |
if (imgName.indexOf( "?" )
> - 1 )
{ |
10 |
imgName
= imgName.substring( 0 ,
imgName.indexOf( "?" )); |
11 |
} |
12 |
|
13 |
Util
util = new Util(); |
14 |
String
saveImagePath = filePath+ "/" +imgName; |
15 |
System.out.println( "图片抓取开始:" ); |
16 |
util.download(imgSrc,saveImagePath); |
17 |
System.out.println( "图片抓取结束:" +imgSrc+ "
保存路径:" +saveImagePath); |
18 |
|
19 |
} |
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/springmvc_springdata/article/details/46753889