Skip to content
BigBaicai edited this page Nov 22, 2018 · 1 revision

Zip写入

byte[] zipBytes = ZipUtil.getNewZip("test.zip")
                     .addZipFile("file1",fileBytes1)
                     .addZipFile("file2",fileBytes2)
                     .getZip();

方法原型addZipFile(String filename, byte[] bytes)

Clone this wiki locally