예제 #1
0
파일: ZipUtil.java 프로젝트: Tr1aL/utils
 private static void zipFile(File srcFile, String destPath, ChunkedZipOutputStream out)
     throws IOException {
   out.putNextEntry(srcFile, destPath);
 }