私のユースケースでは、フォームのキーと値のペアを含むzipアーカイブ内にあるabc.txtなどのtxtファイルを開く必要があります
キー1=値1
キー2=値2
.. など、各キーと値のペアが新しい行にある場合。特定のキーに対応する 1 つの値を変更し、テキスト ファイルをアーカイブの新しいコピーに戻す必要があります。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();