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批量写入和下载的资料请关注我们其它相关文章!

(0)

相关推荐

  • Java实现将png格式图片转换成jpg格式图片的方法【测试可用】

    本文实例讲述了Java实现将png格式图片转换成jpg格式图片的方法.分享给大家供大家参考,具体如下: import java.awt.Color; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import javax.imageio.ImageIO; public class ConvertImageFile { public static void main(Str

  • Java pdf和jpg互转案例

    pdfbox: jpg转pdf: /** * 使用pdfbox将jpg转成pdf * @param jpgStream jpg输入流 * @param pdfPath pdf文件存储路径 * @throws IOException IOException */ public static void jpgToPdf(InputStream jpgStream, String pdfPath) throws IOException { PDDocument pdDocument = new PDD

  • java生成图片验证码的示例代码

    给大家分享一款java生成验证码的源码,可设置随机字符串,去掉了几个容易混淆的字符,还可以设置验证码位数,比如4位,6位.当然也可以根据前台验证码的位置大小,设置验证码图片的大小.下边是源码分享,直接看吧,很简单! 创建servlet类 import java.io.IOException; import javax.servlet.Servlet; import javax.servlet.ServletException; import javax.servlet.http.HttpServ

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

    很久没有在WhitMe上写日记了,因为觉着在App上写私密日记的话肯定是不安全的,但是想把日记存下来.,然后看到有导出日记的功能,就把日记导出了(还好可以直接导出,不然就麻烦点).导出的是一个html文件.可以直接打开,排版都还在. 看了下源码,是把日记存在一个json数组里了,图片还是在服务器,利用url访问,文字是在本地了. 但是想把图片下载到本地,然后和文字对应,哪篇日记下的哪些图片. 大概是如下的json数组. 大概有几百条,分别是头像.内容:文字||内容:图片.时间. 简单明了的jso

  • Java多线程文件分片下载实现的示例代码

    多线程下载介绍 多线程下载技术是很常见的一种下载方案,这种方式充分利用了多线程的优势,在同一时间段内通过多个线程发起下载请求,将需要下载的数据分割成多个部分,每一个线程只负责下载其中一个部分,然后将下载后的数据组装成完整的数据文件,这样便大大加快了下载效率.常见的下载器,迅雷,QQ旋风等都采用了这种技术. 分片下载 所谓分片下载就是要利用多线程的优势,将要下载的文件一块一块的分配到各个线程中去下载,这样就极大的提高了下载速度. 技术难点 并不能说是什么难点,只能说没接触过不知道罢了. 1.如何请

  • Python使用urlretrieve实现直接远程下载图片的示例代码

    在实现爬虫任务时,经常需要将一些图片下载到本地当中.那么在python中除了通过open()函数,以二进制写入方式来下载图片以外,还有什么其他方式吗?本文将使用urlretrieve实现直接远程下载图片. 下面我们再来看看 urllib 模块提供的 urlretrieve() 函数.urlretrieve() 方法直接将远程数据下载到本地. >>> help(urllib.urlretrieve) Help on function urlretrieve in module urllib

  • Python实现网页文件转PDF文件和PNG图片的示例代码

    目录 一.html网页文件转pdf 二.html网页文件转png 一.html网页文件转pdf #将HTML文件导出为PDF def html_to_pdf(html_path,pdf_path='.\\pdf_new.pdf',html_encoding='UTF-8',path_wkpdf = r'.\Tools\wkhtmltopdf.exe'): ''' 将HTML文件导出为PDF :param html_path:str类型,目标HTML文件的路径,可以是一个路径,也可以是多个路径,以

  • Java SpringBoot实现文件上传功能的示例代码

    测试代码 pom.xml: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org

  • Java 批量删除Word中的空白段落示例代码

    1. 测试文档.期望达到的目标文档效果 用于测试的Word文档如下所示,包含的空白段落影响文章整体布局及美观性: 目标文档效果: 2. 辅助工具 2.1 使用类库:Free Spire.Doc for Java(免费版) 2.2 类库jar导入(2种导入方法供参考): ①. 通过官网下载jar包,解压,手动将lib文件夹下的Spire.Doc.jar导入java程序: ②. Maven程序中导入jar需先配置pom.xml文件,然后导入程序,如下配置: <repositories> <r

  • C#读取写入文件的3种方式示例代码

    目录 1:二进制读写 2:泛型读写: 3:XML读写:不是很稳定 最终效果: 总结 最新对文件的操作比较频繁.这里记录一下常用的几种文件读写的方式. 我这里使用窗体来做测试. 1:二进制读写 /// <summary> /// 二进制写入文件 /// </summary> private void button1_Click(object sender, EventArgs e) { SaveFileDialog saveDlg = new SaveFileDialog(); sa

  • Java 批量文件压缩导出并下载到本地示例代码

    主要用的是org.apache.tools.zip.ZipOutputStream  这个zip流,这里以Execl为例子. 思路首先把zip流写入到http响应输出流中,再把excel的流写入zip流中(这里可以不用生成文件再打包,只需把execl模板读出写好数据输出到zip流中,并为每次的流设置文件名) 例如:在项目webapp下execl文件中 存在1.xls,2.xls,3.xls文件 1.Controller @RequestMapping(value = "/exportAll&qu

  • java压缩文件和下载图片示例

    本文实例为大家分享了java压缩文件和下载图片示例,供大家参考,具体内容如下 主页面index.xml <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <html> <head> <title>项目的主页</title> </head> <body> <h2>主页

  • Java字符串写入文件三种方式的实现

     Java字符串写入文件三种方式的实现 1.使用FileWriter String str="hello world!"; FileWriter writer; try { writer = new FileWriter("E:/token.txt"); writer.write(str); writer.flush(); writer.close(); } catch (IOException e) { e.printStackTrace(); } 2.使用Fil

随机推荐