gpt4 book ai didi

groovy - 修改 zip 文件条目的文件内容

转载 作者:行者123 更新时间:2023-12-02 07:03:44 24 4
gpt4 key购买 nike

我想更新位于 zip 文件内的文本文件的内容。

我不知道如何执行此操作,并且下面的代码无法正常工作。

感谢您的帮助!!

import java.util.zip.ZipFile
import java.util.zip.ZipEntry
import java.util.zip.ZipOutputStream

String zipFileFullPath = "C:/path/to/myzipfile/test.zip"

ZipFile zipFile = new ZipFile(zipFileFullPath)
ZipEntry entry = zipFile.getEntry ( "someFile.txt" )

if(entry){
InputStream input = zipFile.getInputStream(entry)
BufferedReader br = new BufferedReader(new InputStreamReader(input, "UTF-8"))

String s = null
StringBuffer sb = new StringBuffer()

while ((s=br.readLine())!=null){
sb.append(s)
}

sb.append("adding some text..")


ZipOutputStream out = new ZipOutputStream(new FileOutputStream(zipFileFullPath))
out.putNextEntry(new ZipEntry("someFile.txt"));

int length


InputStream fin = new ByteArrayInputStream(sb.toString().getBytes("UTF8"))

while((length = fin.read(sb)) > 0)
{
out.write(sb, 0, length)
}

out.closeEntry()

}

最佳答案

只是对@Opal的答案进行了一些细微的修改,我只是:

  • 尽可能使用常规方法
  • 封装在方法中

精彩片段

void updateZipEntry(String zipFile, String zipEntry, String newContent){
def zin = new ZipFile(zipFile)
def tmp = File.createTempFile("temp_${System.nanoTime()}", '.zip')
tmp.withOutputStream { os ->
def zos = new ZipOutputStream(os)
zin.entries().each { entry ->
def isReplaced = entry.name == zipEntry
zos.putNextEntry(isReplaced ? new ZipEntry(zipEntry) : entry)
zos << (isReplaced ? newContent.getBytes('UTF8') : zin.getInputStream(entry).bytes )
zos.closeEntry()
}
zos.close()
}
zin.close()
assert new File(zipFile).delete()
tmp.renameTo(zipFile)
}

用法

updateZipEntry('/tmp/file.zip', 'META-INF/web.xml', '<foobar>new content!</foobar>')

关于groovy - 修改 zip 文件条目的文件内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26191893/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com