美文网首页
1.2下载图片到指定目录

1.2下载图片到指定目录

作者: 文茶君 | 来源:发表于2019-11-20 15:04 被阅读0次

    /**
     * 下载图片到指定目录
     *
     * @param filePath 文件路径
     * @param imgUrl   图片URL
     */
    public static void downImages(String filePath, String imgUrl) {
        // 若指定文件夹没有,则先创建
        File dir = new File(filePath);
        if (!dir.exists()) {
            dir.mkdirs();
        }
        // 截取图片文件名
        String fileName = imgUrl.substring(imgUrl.lastIndexOf('/') + 1, imgUrl.length());

        try {
            // 文件名里面可能有中文或者空格,所以这里要进行处理。但空格又会被URLEncoder转义为加号
            String urlTail = URLEncoder.encode(fileName, "UTF-8");
            // 因此要将加号转化为UTF-8格式的%20
            imgUrl = imgUrl.substring(0, imgUrl.lastIndexOf('/') + 1) + urlTail.replaceAll("\\+", "\\%20");

        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
        // 写出的路径
        File file = new File(filePath + File.separator + fileName);
        //如果图片已存在
        if (file.exists()) {
            System.out.println("图片"+filePath + File.separator + fileName+"已存在");
            return;
        }

        try {
            // 获取图片URL
            URL url = new URL(imgUrl);
            // 获得连接
            URLConnection connection = url.openConnection();
            // 设置10秒的相应时间
            connection.setConnectTimeout(10 * 1000);
            // 获得输入流
            InputStream in = connection.getInputStream();
            // 获得输出流
            BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(file));
            // 构建缓冲区
            byte[] buf = new byte[1024];
            int size;
            // 写入到文件
            while (-1 != (size = in.read(buf))) {
                out.write(buf, 0, size);
            }
            out.close();
            in.close();
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            System.out.println("图片"+imgUrl+"下载失败");
            e.printStackTrace();
        }

这个是我在网上找的方法

具体网址忘了

  //如果图片已存在
        if (file.exists()) {
            System.out.println("图片"+filePath + File.separator + fileName+"已存在");
            return;
        }

为了更贴合这个项目,因为在这个项目中要爬10万多张图片,程序很可能崩溃,所以如果图片存在,直接返回,就不用次次重启项目重新下了。至于为什么不利用多线程,完全是点击量过大造成网站崩溃,所以尽量慢点。

相关文章

网友评论

      本文标题:1.2下载图片到指定目录

      本文链接:https://www.haomeiwen.com/subject/oxpoictx.html