首页 > Java > java教程 > 正文

使用 JarOutputStream 创建 JAR 文件时如何避免未记录的怪癖?

Susan Sarandon
发布: 2024-10-30 08:00:27
原创
216 人浏览过

How to Avoid Undocumented Quirks When Using JarOutputStream to Create JAR Files?

使用 JarOutputStream 创建 JAR 文件

为了以编程方式生成 JAR 文件,经常使用 JarOutputStream。但是,必须避免 JarOutputStream 中某些未记录的怪癖:

1。以斜杠结尾的目录:

JAR 文件中的目录名称必须以“/”斜杠结尾。

2.使用正斜杠的路径:

在路径中使用正斜杠“/”,而不是反斜杠“”。

3.条目名称中没有前导斜杠:

条目名称不应以“/”斜杠开头。

更正的示例代码:

以下更正后的代码使用清单文件构造有效的 JAR 文件:

<code class="java">public void run() throws IOException {
    Manifest manifest = new Manifest();
    manifest.getMainAttributes().put(Attributes.Name.MANIFEST_VERSION, "1.0");
    JarOutputStream target = new JarOutputStream(new FileOutputStream("output.jar"), manifest);
    add(new File("inputDirectory"), target);
    target.close();
}

private void add(File source, JarOutputStream target) throws IOException {
    String name = source.getPath().replace("\", "/");
    if (source.isDirectory()) {
        if (!name.endsWith("/")) {
            name += "/";
        }
        JarEntry entry = new JarEntry(name);
        entry.setTime(source.lastModified());
        target.putNextEntry(entry);
        target.closeEntry();
        for (File nestedFile : source.listFiles()) {
            add(nestedFile, target);
        }
    } else {
        JarEntry entry = new JarEntry(name);
        entry.setTime(source.lastModified());
        target.putNextEntry(entry);
        try (BufferedInputStream in = new BufferedInputStream(new FileInputStream(source))) {
            byte[] buffer = new byte[1024];
            while (true) {
                int count = in.read(buffer);
                if (count == -1) {
                    break;
                }
                target.write(buffer, 0, count);
            }
            target.closeEntry();
        }
    }
}</code>
登录后复制

以上是使用 JarOutputStream 创建 JAR 文件时如何避免未记录的怪癖?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!