2

我已按照 此线程中的说明进行操作,使用其中的代码,我能够将文件添加到 zip 文件中,而无需解压缩和重新压缩它,但是我有一个问题,让我向您展示我的代码:

private void saveFileIntoProjectArchive(Path pathOfFile) {
    this.projectArchiveFile.setWritable(true, false);
    Path zipFilePath = Paths.get(this.projectArchiveFile.getAbsolutePath()),
            pathToSaveInsideZIP = null;
    FileSystem fs;
    try {
        fs = FileSystems.newFileSystem(zipFilePath, null);
        pathToSaveInsideZIP = fs.getPath(pathOfFile.toString().substring((int) this.transactionalProjectFolder.getAbsolutePath().length()));
        System.out.println("Coping from:\n\t"+pathOfFile+"\nto\n\t"+pathToSaveInsideZIP);
        Files.copy(pathOfFile, pathToSaveInsideZIP, REPLACE_EXISTING);
        System.out.println("Done!!!");
        fs.close();
    } catch (java.nio.file.NoSuchFileException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
    projectArchiveFile.setWritable(false, false);
}

我想要做的是,我有很多文件用于同一个项目,该项目是一个存档(ZIP,在代码中由名为 projectArchiveFile 的 java.io.File 引用,我的类的实例变量)包含所有这些文件,当我想使用我的档案中的某个文件时,我只将该文件解压缩到一个结构与我的档案(ZIP,projectArchiveFile)中的结构相同的文件夹中,对该文件夹的引用是一个java .io.File 称为 transactionalProjectFolder,也是我班级的一个实例变量。但是给了我这个错误:

应对从:C:\Dir1\Dir2\Dir3\Begin of Archive stucure\Another folder replica of the archive structure\An Excel File.xlsm to \Begin of Archive stucure\Another folder replica of the archive structure\An Excel File.xlsm

java.nio.file.NoSuchFileException: Begin of Archive stucure\Another folder replica of the archive structure\ at com.sun.nio.zipfs.ZipFileSystem.checkParents(ZipFileSystem.java:846)
at com.sun.nio.zipfs.ZipFileSystem.newOutputStream(ZipFileSystem.java:515)
at com.sun.nio.zipfs.ZipPath.newOutputStream(ZipPath.java:783)
at com.sun.nio.zipfs.ZipFileSystemProvider.newOutputStream(ZipFileSystemProvider.java:276)
at java.nio.file.Files.newOutputStream(Files.java:170)
at java.nio.file.Files.copy(Files.java:2826)
at java.nio.file.CopyMoveHelper.copyToForeignTarget(CopyMoveHelper.java:126)
at java.nio.file.Files.copy(Files.java:1222)

堆栈跟踪的其余部分是我的类。

我已经能够在存档(zip)的根目录中写入,但是每当我尝试在存档(zip)内部的文件夹中写入时,它都会失败,正如您在堆栈跟踪中注意到的那样,它说如果我要复制的文件java.nio.file.NoSuchFileException: Begin of Archive stucure\Another folder replica of the archive structure\,它会在名称之前停止,我完全确定 zip 中的路径存在并且拼写正确,只是不想写(我尝试使用 Files .copy 和 Files.move) 存档里面的文件,我已经卡在这个一个月了,我不知道还能做什么,任何建议将不胜感激!!!

提前致谢!:)...

4

2 回答 2

1

即使您确定路径存在,我也会在下面的行中添加故障排除并查看它创建的目录结构。

该错误表明 zip 中缺少目录。可能是您使用了一些 zip 等不支持的奇怪文件夹名称。

System.out.println("Coping from:\n\t"+pathOfFile+"\nto\n\t"+pathToSaveInsideZIP);

Files.createDirectories(pathToSaveInsideZIP);  // add this row

Files.copy(pathOfFile, pathToSaveInsideZIP, StandardCopyOption.REPLACE_EXISTING);
System.out.println("Done!!!");
于 2013-02-01T14:34:08.380 回答
0

我建议您试用易于使用的TrueZip,它将任何存档公开到虚拟文件系统中,然后您可以轻松附加、删除或编辑存档中的任何文件。

于 2013-02-01T13:26:38.330 回答