示例#1
0
文件: ZipUtil.java 项目: Tr1aL/utils
 private static void zipFile(File srcFile, String destPath, ChunkedZipOutputStream out)
     throws IOException {
   out.putNextEntry(srcFile, destPath);
 }