1

我试图从使用 java-webstart 下载的 jar 文件中提取一些文件。下面的代码用于定位 jar 并启动 FileSystem

1 final ProtectionDomain domain = this.getClass().getProtectionDomain();
2 final CodeSource source = domain.getCodeSource();
3 final URL url    = source.getLocation();
4 final URI uri    = url.toURI();
5 Path jarPath = Paths.get(uri);
6
7 FileSystem fs = FileSystems.newFileSystem(jarPath, null);

当 jar 文件位于本地磁盘上时,这可以正常工作,但在 JWS 场景中的第 5 行失败,因为

日志说: url=http://localhost:8080/myjarfile.jar

java.nio.file.FileSystemNotFoundException: Provider "http" not installed
at java.nio.file.Paths.get(Unknown Source)

如果我正确理解 JWS,myjarfile.jar 已经下载到某个缓存,因此为 http 实现 FileSystemProvider 以从 myjarfile.jar 获取一些内容似乎很慢而且很复杂。那么关于如何进行的任何好主意?

4

2 回答 2

1

日志说: url=http://localhost:8080/myjarfile.jar

这是 Sun 在 Oracle 收购它们之前做出的安全决定。他们认为这与小程序或 JWS 应用程序无关。知道资源在本地文件系统上的位置,因此返回的 URI 现在将始终指向服务器,即使它们在本地和应用程序中缓存。有all-permissions安全级别。

那么关于如何进行的任何好主意?

重新设计应用程序。这是唯一可行的解​​决方案。

有多种方法可以为内容迭代 Zip 或 Jar,但最简单的方法是在 Jar 的已知位置包含内容列表,使用 定位它getResource(),读取它,然后提取每个资源。

于 2012-06-26T19:54:18.377 回答
1

下面是你的想法 Andrew 的实现,它利用了我在这里找到的 DirUtil 包:http: //codingjunkie.net/java-7-copy-move/

public class Zipper {

    private static final String TEMP_FILE_PREFIX = "temp-";
    private static final String TEMP_FILE_SUFIX = ".jar";

    private Logger logger = Logger.getLogger(getClass().getName());

    public Path extractProgram(String locationOfEmbeddedJar, String installDir) {
        Path installPath = null;
        try {
            installPath = Paths.get(installDir);
            if (Files.isDirectory(installPath)) {
                logger.warn("program already installed");
            } else {
                installPath = Files.createDirectory(installPath);
                Path tempJar = Files.createTempFile(TEMP_FILE_PREFIX,
                        TEMP_FILE_SUFIX);
                this.extractEmbeddedJar(locationOfEmbeddedJar, tempJar.toFile());

                logger.warn("in jarfile");
                // in jar file
                FileSystem fs = FileSystems.newFileSystem(tempJar, null);
                Path programPath = fs.getPath("/");

                logger.warn("programPath=" + programPath + " fileSystem="
                        + programPath.getFileSystem());

                DirUtils.copy(programPath, installPath);
            }
        } catch (IOException e) {
            logger.warn(e);
        }

        return (installPath);

    }

    private void extractEmbeddedJar(String locationOfEmbeddedJar,
            File locationOfTargetJar) {
        logger.warn("extractEmbeddedJar() " + locationOfEmbeddedJar);
        ClassLoader loader = this.getClass().getClassLoader();

        InputStream inputStream = loader
                .getResourceAsStream(locationOfEmbeddedJar);
        try {
            OutputStream out = new FileOutputStream(locationOfTargetJar);
            byte buf[] = new byte[1024];
            int len;
            while ((len = inputStream.read(buf)) > 0) {
                out.write(buf, 0, len);
            }
            out.close();
            inputStream.close();

        } catch (IOException e) {
            logger.warn(e);
        }
    }
}
于 2012-07-03T04:58:16.203 回答