我的用例要求我打开一个 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();