java爬虫抓取图片

本文详细介绍了如何利用Java编程实现爬虫技术,从指定网页中高效地抓取并下载图片。通过解析HTML,使用正则表达式或DOM解析库定位图片URL,结合HTTP请求下载图片,确保图片质量与完整性。
摘要由CSDN通过智能技术生成
 <dependency>
            <groupId>org.jsoup</groupId>
            <artifactId>jsoup</artifactId>
            <version>1.7.3</version>
        </dependency>
public class JsoupDownImg {

    public static void main(String[] args) throws IOException {
        String url = "http://www.ososxt.com/platform/xuan?tag=searchCourseList&type=75";
        Document document = Jsoup.parse(new URL(url), 10000);
        Element content = document.getElementById("crrimList");
        System.out.println(content);
        Elements imgs = content.getElementsByTag("img");
        System.out.println(imgs);
        int id = 0;
        for (Element img : imgs) {
            String src = img.attr("src");
            //获取输入流
            URL target = new URL(src);
            URLConnection urlConnection = target.openConnection();
            InputStream inputStream = urlConnection.getInputStream();
            id++;
            OutputStream outputStream = new FileOutputStream("C:\\Users\\Administrator\\Desktop\\常使用文件\\img\\jsoup\\"+id+".jpg");
            int temp = 0;
            while ((temp=inputStream.read())!=-1){
                outputStream.write(temp);
            }
            System.out.println(id+".jpg下载完毕");
            outputStream.close();
            inputStream.close();
        }

    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值