2

我有一个函数可以从文件列表中创建一个 Zip 文件。是否可以在不保存在磁盘上的情况下返回 Zip 文件?我需要该文件,因为我必须将 zip 文件用作另一个函数的参数。我不确定 ByteStream 是否适合我。

public File compressFileList(List<File> fileList,String fileName) {
    FileOutputStream fileOutputStream=null;
    ZipOutputStream zipOutputStream=null;
    FileInputStream fileInputStream=null;
    String compressedFileName=fileName +".zip";
    if(fileList.isEmpty())
        return null;
    try
    {
        fileOutputStream =  new FileOutputStream(compressedFileName);
        zipOutputStream = new ZipOutputStream(new BufferedOutputStream(fileOutputStream));
        for (File file: fileList) {
            fileInputStream = new FileInputStream(file);
            ZipEntry zipEntry =  new ZipEntry(file.getName());
            zipOutputStream.putNextEntry(zipEntry);
            byte[] tmp = new byte[4*1024];
            int size = 0;
            while((size = fileInputStream.read(tmp)) != -1){
                zipOutputStream.write(tmp, 0, size);
            }
            zipOutputStream.flush();
            fileInputStream.close();
        }
        zipOutputStream.close();
        return compressedFile; //This is what I am missing

    }
    catch (FileNotFoundException e)
    {

    } catch (IOException e) {
        e.printStackTrace();
    }
    return null;
}

编辑:添加用例

这个想法是创建一个 zip 文件并使用 Watson 的 VisualRecognition Service 的 CreateClassifierOptions 方法。

classifierOptions = new CreateClassifierOptions.Builder()
            .classifierName("Santa")
            .addClass("Santa", new File("C:\\app\\GitRepo\\images\\beagle.zip"))
            .negativeExamples(new File("C:\\app\\GitRepo\\images\\nosport.zip"))
            .build();

构建器接受 zip 文件作为参数。

理解

根据 Alexandre Dupriez 的解释,我认为最好将文件存储在硬盘上的某个位置。

4

2 回答 2

3

您应该能够使用 aByteArrayOutputStream而不是 a FileOutputStream

zipOutputStream = new ZipOutputStream(new ByteArrayOutputStream());

这里的难点在于提供一个File使用 zip 文件的方法。java.io.File不提供允许您操作内存中文件的抽象。

java.io.File抽象与java.io.FileInputStream实现

为简化起见,如果我们必须简化File抽象是什么,我们会将其视为URI. 因此,为了能够构建一个 in-memory File,或者至少模仿它,我们需要提供一个URIwhich 供消费者使用File来读取它的内容。

如果我们查看FileInputStream消费者可能使用的,我们可以看到它总是以原生调用结束,这使我们有可能FileSystem为内存中的文件抽象 a:

// class java.io.FileInputStream
/**
 * Opens the specified file for reading.
 * @param name the name of the file
 */
private native void open0(String name) throws FileNotFoundException;

如果有可能使消费者接受 ,那会更容易InputStream,但是从您的问题陈述来看,我想这是不可能的。

API 调用

您的要求是向FileWatson Visual API 提供一个。您能否提供您需要调用的 API 方法?

于 2017-11-13T10:07:25.553 回答
1
public void compressFileList(List<File> fileList, OutputStream outputStream)
        throws IOException {
    try (ZipOutputStream zipOutputStream =
            new ZipOutputStream(new BufferedOutputStream(outputStream));
        for (File file: fileList) {
            try (FileInputStream fileInputStream = new FileInputStream(file)) {
                ZipEntry zipEntry = new ZipEntry(file.getName());
                zipOutputStream.putNextEntry(zipEntry);
                byte[] tmp = new byte[4*1024];
                int size = 0;
                while((size = fileInputStream.read(tmp)) != -1){
                    zipOutputStream.write(tmp, 0, size);
                }
                zipOutputStream.flush();
            } catch (FileNotFoundException e) { // Maybe skip not found files.
                Logger.log(Level.INFO, "File not found {}", file.getPath());
            }
        }
    }
}

用法:

if (fileList.isEmpty()) {
    ...
    return;
}
try {
    compressFileList(fileList, servletRequest.getOutputStream())) {
} catch (FileNotFoundException e) {
   ...
} catch (IOException e) {
    ...
}
于 2017-11-13T10:30:03.550 回答