0

注意:这是我的问题的后续行动


我有一个程序,它获取目录的内容并将所有内容捆绑到 JAR 文件中。我用来执行此操作的代码在这里:

    try
    {
        FileOutputStream stream = new FileOutputStream(target);
        JarOutputStream jOS = new JarOutputStream(stream);

        LinkedList<File> fileList = new LinkedList<File>();
        buildList(directory, fileList);

        JarEntry jarAdd;

        String basePath = directory.getAbsolutePath();
        byte[] buffer = new byte[4096];
        for(File file : fileList)
        {
            String path = file.getPath().substring(basePath.length() + 1);
            path.replaceAll("\\\\", "/");
            jarAdd = new JarEntry(path);
            jarAdd.setTime(file.lastModified());
            jOS.putNextEntry(jarAdd);

            FileInputStream in = new FileInputStream(file);
            while(true)
            {
                int nRead = in.read(buffer, 0, buffer.length);
                if(nRead <= 0)
                    break;
                jOS.write(buffer, 0, nRead);
            }
            in.close();
        }
        jOS.close();
        stream.close();

所以,一切都很好,并且创建了 jar,当我使用 7-zip 探索它的内容时,它包含了我需要的所有文件。但是,当我尝试通过 URLClassLoader 访问 Jar 的内容时(该 jar 不在类路径上,我不打算这样做),我得到空指针异常。

奇怪的是,当我使用从 Eclipse 导出的 Jar 时,我可以以我想要的方式访问它的内容。这让我相信我在某种程度上没有正确地创建 Jar,并且遗漏了一些东西。上面的方法有什么遗漏吗?

4

1 回答 1

1

我根据这个问题弄清楚了- 问题是我没有正确处理反斜杠。

固定代码在这里:

        FileOutputStream stream = new FileOutputStream(target);
        JarOutputStream jOS = new JarOutputStream(stream);

        LinkedList<File> fileList = new LinkedList<File>();
        buildList(directory, fileList);

        JarEntry entry;

        String basePath = directory.getAbsolutePath();
        byte[] buffer = new byte[4096];
        for(File file : fileList)
        {
            String path = file.getPath().substring(basePath.length() + 1);
            path = path.replace("\\", "/");
            entry = new JarEntry(path);
            entry.setTime(file.lastModified());
            jOS.putNextEntry(entry);
            FileInputStream in = new FileInputStream(file);
            while(true)
            {
                int nRead = in.read(buffer, 0, buffer.length);
                if(nRead <= 0)
                    break;
                jOS.write(buffer, 0, nRead);
            }
            in.close();
            jOS.closeEntry();
        }
        jOS.close();
        stream.close();
于 2012-06-16T21:43:47.837 回答