简体   繁体   English

提取使用 HTTP GET 请求下载的 Zip 文件的内容

[英]Extract contents of Zip file downloaded using a HTTP GET request

I have to download a Zip file, from rest call and extract its contents (some PDF files and a PNG file).我必须从 rest 调用下载一个 Zip 文件并提取其内容(一些 PDF 文件和一个 PNG 文件)。

I'm using Java Spring.我正在使用 Java Spring。

How can do it?怎么办?

You can use Spring's RestTemplate to download the file可以使用 Spring 的 RestTemplate 下载文件

RestTemplate templ = new RestTemplate();
byte[] downloadedBytes = templ.getForObject(url, byte[].class);

Extract the contents with standard java or a third party library.使用标准 java 或第三方库提取内容。

Example utility, adapted from here: http://www.codejava.net/java-se/file-io/programmatically-extract-a-zip-file-using-java示例实用程序,改编自此处: http : //www.codejava.net/java-se/file-io/programmatically-extract-a-zip-file-using-java

package com.test;

import java.io.BufferedOutputStream;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;

public class ZipHelper {

    private static final int BUFFER_SIZE = 4096;

    public static void unzip(byte[] data, String dirName) throws IOException {
        File destDir = new File(dirName);
        if (!destDir.exists()) {
            destDir.mkdir();
        }
        ZipInputStream zipIn = new ZipInputStream(new ByteArrayInputStream(data));
        ZipEntry entry = zipIn.getNextEntry();

        while (entry != null) {
            String filePath = dirName + File.separator + entry.getName();
            if (!entry.isDirectory()) {
                // if the entry is a file, extracts it
                extractFile(zipIn, filePath);
            } else {
                // if the entry is a directory, make the directory
                File dir = new File(filePath);
                dir.mkdir();
            }
            zipIn.closeEntry();
            entry = zipIn.getNextEntry();
        }
        zipIn.close();
    }

    private static void extractFile(ZipInputStream zipIn, String filePath) throws IOException {
        BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(filePath));
        byte[] bytesIn = new byte[BUFFER_SIZE];
        int read = 0;
        while ((read = zipIn.read(bytesIn)) != -1) {
            bos.write(bytesIn, 0, read);
        }
        bos.close();
    }
}

Then you use this utility like so:然后你像这样使用这个实用程序:

ZipHelper.unzip(downloadedBytes, "/path/to/directory");

The requesdt body should be like this:请求体应该是这样的:

@RequestMapping(value = "/push/{id}", method = RequestMethod.POST, consumes = MediaType.APPLICATION_OCTET_STREAM_VALUE, produces=MediaType.APPLICATION_JSON_VALUE)
@ResponseStatus(HttpStatus.OK)
public String pushTransactions(@PathVariable("id") String id, @RequestBody byte[] str) throws MessagingException, JsonParseException, JsonMappingException, IOException {

and in controller, you can do this:在控制器中,你可以这样做:

GZIPInputStream gis = new GZIPInputStream(new ByteArrayInputStream(str));
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        int len;
        while ((len = gis.read(buffer)) > 0) {
            out.write(buffer, 0, len);
        }

        gis.close();
        out.close();

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM