试图实现可操作的zip文件系统 - 失败

时间:2012-07-29 12:09:39

标签: java zip nio

我需要找到一个解决方案,能够直接操作zip / jar(无需解压缩)并且不使用第三方库。但是我似乎无法理解FileSystemPathURI的关系。

我要复制的URI是jar:file://E:/Projects/ZipDir/dist/test_folder/test.zip!/test_file.txt

我得到的例外是:
  FileSystemNotFoundException 但该zip文件确实存在。

使用Java 7,这是我到目前为止所做的:

...
ZipDirectory zip = new ZipDirectory("test_folder/test.zip");
Path copyTo = zip.getPath("/test_file.txt");
Path copyFrom = Paths.get("test_file.txt");

Files.copy(copyFrom, copyTo, StandardCopyOption.REPLACE_EXISTING);
...

//

import java.io.IOException;
import java.net.URI;
import java.nio.file.*;
import java.util.HashMap;

public class ZipDirectory {

    private Path path;
    private FileSystem fileSystem;

    public ZipDirectory(String path){
        this.path = Paths.get(Paths.get(path).toUri());
        create();
    }

    private void create(){
        HashMap<String, String> env = new HashMap<>(); 
        env.put("create", "true");
        try {          
            fileSystem = FileSystems.newFileSystem(path, null);
        } catch (IOException ex) {
            System.out.println(ex);
        }
    }

    public Path getPath(String relativePath){
        return Paths.get(URI.create("jar:file:/" + path.toUri().getPath() + "!" + fileSystem.getPath(relativePath)));
    }

    public Path getRoot(){
        return Paths.get(URI.create(path.toUri().getPath() + "!/"));
    }

    public void close(){
        try {
            fileSystem.close();
        } catch (IOException ex) {
            System.err.println(ex);
        }
        fileSystem = null;
    }
}

1 个答案:

答案 0 :(得分:2)

我从未想过我会回答我自己的问题,但我已经开始工作了:

Treating an archive like a directory with Java 7