JavaはXMLファイルを生成し、データをGZ形式に圧縮します

最近、PC側のインターフェースがドッキングされ、PC側のインターフェースがデータをプルするときにオンライン環境のバックグラウンド負荷が高くなることがよくあります。この問題を解決するために、インターフェースをxmlファイル形式に変換し、サービスをプルします。 PCクライアントが起動するたびに最新のxmlファイルを終了して、優れたユーザーエクスペリエンスを実現します。

1.統合されたMaven

     <dependency>
            <groupId>com.thoughtworks.xstream</groupId>
            <artifactId>xstream</artifactId>
            <version>1.4.12</version>
        </dependency>


xstreamアノテーションの説明: @XStreamAlias( "id"):シリアル化されたクラスのフルネームをエイリアスに置き換えます。

2.ツール

xmlファイルを生成する

 public static <T> void listObjectToXmlFile(List<T> list, String path, String fileName, Integer tradeDate, boolean isCompress) {
    
    
        XStream xStream = new XStream(new DomDriver("UTF-8"));
        xStream.autodetectAnnotations(true);
        xStream.registerConverter(new DateConverter("yyyy-MM-dd HH:mm:ss", null, TimeZone.getTimeZone("GMT+8")));
        String xml = xStream.toXML(list);
        String realPath = path + tradeDate;
        File dir = new File(realPath);
        if (!dir.exists()) {
    
    // 判断目录是否存在
            dir.mkdir();
        }
        String pathName = realPath + File.separator + fileName;
        //创建文件
        File file = new File(pathName);
        if (file.exists()) {
    
    
            file.delete();
        }
        try {
    
    
            file.createNewFile();
        } catch (IOException e) {
    
    
            log.error("创建文件发生错误");
        }
        //写入数据
        FileOutputStream out = null;
        OutputStreamWriter outw = null;
        try {
    
    
            out = new FileOutputStream(file);
            outw = new OutputStreamWriter(out, "UTF-8");
            try {
    
    
                outw.write(xml);
            } catch (IOException e) {
    
    
                log.error("生成文件发生错误");
            } finally {
    
    
                outw.close();
                out.close();
            }
        } catch (Exception e1) {
    
    
            log.error("FileNotFoundException");
        }
        //压缩文件
        if (isCompress)
            doCompressFile(file, realPath);
    }

xmlファイルを圧縮します

  /**
     * 压缩xml文件成.gz
     *
     * @param source
     */
    public static void doCompressFile(File source, String realPath) {
    
    
        String realGzName = source.getName() + Constant.GZ_SUFFIX;
        String pathName = realPath + File.separator + realGzName;
        //创建文件
        File target = new File(pathName);
        if (target.exists()) {
    
    
            target.delete();
        }
        try {
    
    
            target.createNewFile();
        } catch (IOException e) {
    
    
            log.error("创建文件发生错误");
        }
        FileInputStream in = null;
        GZIPOutputStream out = null;
        try {
    
    
            in = new FileInputStream(source);
            out = new GZIPOutputStream(new FileOutputStream(target));
            byte[] buf = new byte[10240];
            int len = 0;
            try {
    
    
                while (((in.available() > 10240) && (in.read(buf)) > 0)) {
    
    
                    out.write(buf);
                }
                len = in.available();
                in.read(buf, 0, len);
                out.write(buf, 0, len);
                out.flush();
            } catch (IOException e) {
    
    
                log.error("IOException发生异常");
            } finally {
    
    
                in.close();
                out.close();
            }
        } catch (FileNotFoundException e) {
    
    
            log.error("FileNotFoundException发生异常");
        } catch (IOException e) {
    
    
            log.error("IOException发生异常");
        }
    }

私が提供したツールによると、基本的には実際のニーズに応じて使用できます

私のWeChatパブリックアカウントに従ってください
ここに画像の説明を挿入

おすすめ

転載: blog.csdn.net/CharlesYooSky/article/details/110791501