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