Java批量写入文件和下载图片的示例代码

 更新时间:2020年09月17日 09:40:05   作者:zj  
这篇文章主要介绍了Java批量写入文件和下载图片的示例代码,帮助大家更好的理解和使用Java,感兴趣的朋友可以了解下

很久没有在WhitMe上写日记了,因为觉着在App上写私密日记的话肯定是不安全的,但是想把日记存下来。,然后看到有导出日记的功能,就把日记导出了(还好可以直接导出,不然就麻烦点)。导出的是一个html文件。可以直接打开,排版都还在。

看了下源码,是把日记存在一个json数组里了,图片还是在服务器,利用url访问,文字是在本地了。 但是想把图片下载到本地,然后和文字对应,哪篇日记下的哪些图片。

大概是如下的json数组。 大概有几百条,分别是头像、内容:文字||内容:图片、时间。 简单明了的json结构,就想着用java遍历保存到本地。

[{
  "avatar": "http://static.withme.cn/585****",
  "blocks": [{
    "content": "今天天气不错******",
    "type": "text"
  }, {
    "content": "http://static.withme.cn/84ac***",
    "type": "pic"
  }, {
    "content": "http://static.withme.cn/5af2c***",
    "type": "pic"
  }, {
    "content": "http://static.withme.cn/9a4e****",
    "type": "pic"
  }, {
    "content": "http://static.withme.cn/9ffdb***",
    "type": "pic"
  }, {
    "content": "http://static.withme.cn/da5e7db***",
    "type": "pic"
  }, {
    "content": "http://static.withme.cn/e6ccf3764***",
    "type": "pic"
  }, {
    "content": "http://static.withme.cn/73ca***",
    "type": "pic"
  }, {
    "content": "http://static.wi***",
    "type": "pic"
  }, {
    "content": "http://static.withme.cn/4cf7dde****",
    "type": "pic"
  }],
  "dateStr": "2018-09-03",
  "timeStr": "18:59:41"
},{...},...]

将json数组格式化确保正确然后转成json数组遍历。获取到的图片下载,文字写入文档。

 public static void main(String[] args) {
    CloseableHttpClient client = null;
    JSONArray jsonArray = JSONArray.parseArray(
      "[{
        "avatar": "http://static.withme.cn/585****",
        "blocks": [{
          "content": "今天天气不错******",
          "type": "text"
        }, {
          "content": "http://static.withme.cn/84ac***",
          "type": "pic"
        }, {
          "content": "http://static.withme.cn/5af2c***",
          "type": "pic"
        }, {
          "content": "http://static.withme.cn/9a4e****",
          "type": "pic"
        }, {
          "content": "http://static.withme.cn/9ffdb***",
          "type": "pic"
        }, {
          "content": "http://static.withme.cn/da5e7db***",
          "type": "pic"
        }, {
          "content": "http://static.withme.cn/e6ccf3764***",
          "type": "pic"
        }, {
          "content": "http://static.withme.cn/73ca***",
          "type": "pic"
        }, {
          "content": "http://static.wi***",
          "type": "pic"
        }, {
          "content": "http://static.withme.cn/4cf7dde****",
          "type": "pic"
        }],
        "dateStr": "2018-09-03",
        "timeStr": "18:59:41"
      },{...},{...},...]");
 
    try {
      for (int m = 0; m < jsonArray.size(); m++) {
        JSONObject jsonPas = jsonArray.getJSONObject(m);
        JSONArray array = JSONArray.parseArray(jsonPas.get("blocks").toString());
        String time = jsonPas.get("dateStr").toString();
        for (int j = 0; j < array.size(); j++) {
          JSONObject jsPas = array.getJSONObject(j); // 遍历 jsonarray 数组,把每一个对象转成 json 对象
          if (jsPas.get("type").equals("text")) {
            FileWriter fileWriter = null;
            try {
              String filePath = "f:/13/" + time;
              File dir = new File(filePath);
              // 检查放置文件的文件夹路径是否存在,不存在则创建
              if (!dir.exists()) {
                dir.mkdirs();// mkdirs创建多级目录
              }
              File checkFile = new File(filePath + "/text" + time + "-" + j + ".txt");
              // 检查目标文件是否存在,不存在则创建
              if (!checkFile.exists()) {
                checkFile.createNewFile();// 创建目标文件
              }
              // FileWriter(File file, boolean append),append为true时为追加模式,false或缺省则为覆盖模式
              fileWriter = new FileWriter(checkFile, true);
              String url = jsPas.get("content").toString();
              // 向目标文件中写入内容
              fileWriter.append(url);
              fileWriter.flush();
              System.out.println("写入成功!!");
            } catch (IOException e) {
              e.printStackTrace();
            } finally {
              try {
                fileWriter.close();
              } catch (IOException e) {
                e.printStackTrace();
              }
            }
          }
          if (jsPas.get("type").equals("pic")) {
            client = HttpClients.createDefault();
            String url = jsPas.get("content").toString();
            String path = "f:/13/" + time;
            // System.out.println(jsPas.get("content"));
            httpGetImg(client, url, path + "/pic" + time + "-" + j + ".jpg");
            System.out.println("ok");
          }
        }
      }
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
      if (client != null) {
        try {
          client.close();
        } catch (IOException e) {
          e.printStackTrace();
        }
      }
    }
  }
 
  /**
   * 发送get请求, 下载图片
   * 
   * @param url 路径
   * @return
   */
  public static void httpGetImg(CloseableHttpClient client, String imgUrl, String savePath) {
    // 发送get请求
    HttpGet request = new HttpGet(imgUrl);
    // 设置请求和传输超时时间
    RequestConfig requestConfig = RequestConfig.custom().setSocketTimeout(50000).setConnectTimeout(50000).build();
    // 设置请求头
    request.setHeader("User-Agent",
      "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1");
    request.setConfig(requestConfig);
    try {
      CloseableHttpResponse response = client.execute(request);
      if (HttpStatus.SC_OK == response.getStatusLine().getStatusCode()) {
        HttpEntity entity = response.getEntity();
        InputStream in = entity.getContent();
        FileUtils.copyInputStreamToFile(in, new File(savePath));
        System.out.println("下载图片成功:" + imgUrl);
      }
    } catch (IOException e) {
      e.printStackTrace();
      throw new RuntimeException(e);
    } finally {
      request.releaseConnection();
    }
  }

JAr包:

 <!-- apache io操作通用jar包 -->
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.4</version>
    </dependency>
    
   <!-- httpclient 支持jar -->
  <dependency>
    <groupId>org.apache.httpcomponents</groupId>
      <artifactId>httpclient</artifactId>
     <version>4.3.5</version>
   </dependency>
   <dependency>
     <groupId>org.apache.httpcomponents</groupId>
     <artifactId>httpmime</artifactId>
     <version>4.3.5</version>
   </dependency>

运行结果:

保存到本地:

以上就是Java批量写入文件和下载图片的示例代码的详细内容,更多关于Java批量写入和下载的资料请关注脚本之家其它相关文章!

相关文章

  • java 算法之快速排序实现代码

    java 算法之快速排序实现代码

    这篇文章主要介绍了java 算法之快速排序实现代码的相关资料,需要的朋友可以参考下
    2017-05-05
  • 浅谈Java垃圾回收机制

    浅谈Java垃圾回收机制

    Java 中,程序员不需要关心所有不再使用的对象。垃圾回收机制自动销毁这些对象。垃圾回收机制是守护线程的最佳示例,因为它始终在后台运行。垃圾回收机制的主要目标是通过销毁无法访问的对象来释放堆内存。下面我们就来详细介绍吧
    2021-09-09
  • java大话之创建型设计模式教程示例

    java大话之创建型设计模式教程示例

    这篇文章主要为大家介绍了java大话之创建型设计模式教程示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-02-02
  • Java HttpClient用法的示例详解

    Java HttpClient用法的示例详解

    Java开发语言中实现HTTP请求的方法主要有两种:一种是JAVA的标准类HttpUrlConnection;另一种是第三方开源框架HTTPClient。本文就将详细讲讲Java中HttpClient的使用,需要的可以参考一下
    2022-07-07
  • java 之JNA中的Memory和Pointer的使用方法

    java 之JNA中的Memory和Pointer的使用方法

    这篇文章主要介绍了java 之JNA中的Memory和Pointer的使用方法,文章基于Java的相关自来哦展开对Pointer和Memory的使用介绍,需要的小伙伴可以参考一下
    2022-04-04
  • Java中接口Set的特点及方法说明

    Java中接口Set的特点及方法说明

    这篇文章主要介绍了Java中接口Set的特点及方法说明,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2022-02-02
  • Spring Boot整合持久层之JPA多数据源

    Spring Boot整合持久层之JPA多数据源

    JPA(Java Persistence API)Java 持久化 API,是 Java 持久化的标准规范,Hibernate 是持久化规范的技术实现,而 Spring Data JPA 是在 Hibernate 基础上封装的一款框架
    2022-08-08
  • @NonNull导致无法序列化的问题及解决

    @NonNull导致无法序列化的问题及解决

    这篇文章主要介绍了@NonNull导致无法序列化的问题及解决方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2023-01-01
  • springboot表单提交之validator校验

    springboot表单提交之validator校验

    在前台表单验证的时候,通常会校验一些数据的可行性,比如是否为空,长度,身份证,邮箱等等,这篇文章主要给大家介绍了关于springboot表单提交之validator校验的相关资料,需要的朋友可以参考下
    2021-05-05
  • spring级联属性赋值的两种方式解析

    spring级联属性赋值的两种方式解析

    这篇文章主要介绍了spring级联属性赋值的两种方式解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2020-01-01

最新评论