0

allatori当我像在我的文件上运行一个混淆器时JAR,它会在存档中添加一条评论,比如Obfuscation by Allatori Obfuscator http://www.allatori.com

使用WinRAR,可以通过编辑存档评论来删除此评论。

但是,我没有找到一种方法可以在批处理脚本或 Java 代码中集成到我的构建过程中。

怎么做到呢?

4

2 回答 2

3

这是使用 WinRAR CLI 更新存档文件注释的方式:

for %I in ("E:\YOUR\JAR\LOCATION\*.jar") do @"%ProgramFiles%\WinRAR\WinRAR.exe" c -zBLANK_COMMENT_FILE.txt "%I"

创建一个名为BLANK_COMMENT_FILE.txt运行此命令的空白文件。

以管理员权限运行此命令。

希望这会帮助你。

于 2019-12-24T10:22:55.363 回答
2

我想你可以复制 zip 文件而不复制评论。

public static void removeComment(Path file) throws IOException {
    Path tempFile = Files.createTempFile("temp", ".zip");
    copyZipFile(file, tempFile, false);
    Files.move(tempFile, file, StandardCopyOption.REPLACE_EXISTING);
}

public static void copyZipFile(Path file, Path newFile, boolean copyComment) throws IOException {
    try (ZipFile zipFile = new ZipFile(file.toFile());
            ZipOutputStream outputStream = new ZipOutputStream(new BufferedOutputStream(Files.newOutputStream(newFile)))) {
        if (copyComment) {
            outputStream.setComment(zipFile.getComment());
        }
        Enumeration<? extends ZipEntry> entries = zipFile.entries();
        while (entries.hasMoreElements()) {
            copyEntry(zipFile, outputStream, entries.nextElement());
        }
    }
}

private static void copyEntry(ZipFile zipFile, ZipOutputStream outputStream, ZipEntry entry) throws IOException {
    ZipEntry newEntry = (ZipEntry) entry.clone();
    outputStream.putNextEntry(newEntry);
    IOUtils.copy(zipFile.getInputStream(entry), outputStream);
}
于 2019-12-24T12:48:42.410 回答