!include once #1024944 // Apache Commons Compress svoid text2zip_apache(ZipArchiveOutputStream outZip, S name, S text) ctex { if (text == null) ret; byte[] utf8 = toUtf8(text); ZipArchiveEntry e = new(name); e.setSize(l(utf8)); outZip.putArchiveEntry(e); outZip.write(utf8, 0, l(utf8)); }