在 Java 中修改 ZIP 存档中的文本文件

2022-09-01 20:20:17

我的用例要求我打开一个txt文件,比如abc.txt它位于zip存档中,其中包含格式中的键值对

键 1=值 1

键 2= 值 2

..等等,每个键值对都在新行中。我必须更改一个对应于某个键的值,并将文本文件放回存档的新副本中。如何在Java中执行此操作?

到目前为止,我的尝试:

    ZipFile zipFile = new ZipFile("test.zip");
    final ZipOutputStream zos = new ZipOutputStream(new FileOutputStream("out.zip"));
    for(Enumeration e = zipFile.entries(); e.hasMoreElements(); ) {
        ZipEntry entryIn = (ZipEntry) e.nextElement();
        if(!entryIn.getName().equalsIgnoreCase("abc.txt")){
            zos.putNextEntry(entryIn);
            InputStream is = zipFile.getInputStream(entryIn);
            byte [] buf = new byte[1024];
            int len;
            while((len = (is.read(buf))) > 0) {            
                zos.write(buf, 0, len);
            }
        }
        else{
            // I'm not sure what to do here
            // Tried a few things and the file gets corrupt
        }
        zos.closeEntry();
    }
    zos.close();

答案 1

Java 7引入了一种更简单的zip归档操作方法 - FileSystems API,它允许以文件系统的形式访问文件的内容。

除了更直接的API之外,它还在现场进行修改,并且不需要在zip存档中重写其他(不相关)文件(如在接受的答案中所做的那样)。

以下是解决OP用例的示例代码:

import java.io.*;
import java.nio.file.*;

public static void main(String[] args) throws IOException {
    modifyTextFileInZip("test.zip");
}

static void modifyTextFileInZip(String zipPath) throws IOException {
    Path zipFilePath = Paths.get(zipPath);
    try (FileSystem fs = FileSystems.newFileSystem(zipFilePath, null)) {
        Path source = fs.getPath("/abc.txt");
        Path temp = fs.getPath("/___abc___.txt");
        if (Files.exists(temp)) {
            throw new IOException("temp file exists, generate another name");
        }
        Files.move(source, temp);
        streamCopy(temp, source);
        Files.delete(temp);
    }
}

static void streamCopy(Path src, Path dst) throws IOException {
    try (BufferedReader br = new BufferedReader(
            new InputStreamReader(Files.newInputStream(src)));
         BufferedWriter bw = new BufferedWriter(
            new OutputStreamWriter(Files.newOutputStream(dst)))) {

        String line;
        while ((line = br.readLine()) != null) {
            line = line.replace("key1=value1", "key1=value2");
            bw.write(line);
            bw.newLine();
        }
    }
}

有关更多 zip 存档操作示例,请参阅可在此处下载的示例(查找 JDK 8 演示和示例)。demo/nio/zipfs/Demo.java


答案 2

你几乎做对了。文件显示为已损坏的一个可能原因是您可能使用了

zos.putNextEntry(entryIn)

在其他部分也是如此。这将在 zip 文件中创建一个新条目,其中包含现有 zip 文件中的信息。现有信息包含条目名称(文件名)及其CRC等。

然后,当您尝试更新文本文件并关闭zip文件时,它将引发错误,因为条目中定义的CRC和您尝试写入的对象的CRC不同。

此外,如果您尝试替换的文本长度与现有文本的长度不同,即您正在尝试替换的文本,则可能会出错

键 1=值 1

键 1=val1

这归结为您尝试写入的缓冲区的长度与指定缓冲区的长度不同的问题。

ZipFile zipFile = new ZipFile("test.zip");
final ZipOutputStream zos = new ZipOutputStream(new FileOutputStream("out.zip"));
for(Enumeration e = zipFile.entries(); e.hasMoreElements(); ) {
    ZipEntry entryIn = (ZipEntry) e.nextElement();
    if (!entryIn.getName().equalsIgnoreCase("abc.txt")) {
        zos.putNextEntry(entryIn);
        InputStream is = zipFile.getInputStream(entryIn);
        byte[] buf = new byte[1024];
        int len;
        while((len = is.read(buf)) > 0) {            
            zos.write(buf, 0, len);
        }
    }
    else{
        zos.putNextEntry(new ZipEntry("abc.txt"));

        InputStream is = zipFile.getInputStream(entryIn);
        byte[] buf = new byte[1024];
        int len;
        while ((len = (is.read(buf))) > 0) {
            String s = new String(buf);
            if (s.contains("key1=value1")) {
                buf = s.replaceAll("key1=value1", "key1=val2").getBytes();
            }
            zos.write(buf, 0, (len < buf.length) ? len : buf.length);
        }
    }
    zos.closeEntry();
}
zos.close();

下面的代码确保即使替换的数据的长度小于原始长度,也不会发生 IndexOutOfBoundsException。

(len < buf.length) ?len : buf.length


推荐