コード例 #1
0
ファイル: ZipUtil.java プロジェクト: Tr1aL/utils
 private static void zipFile(File srcFile, String destPath, ChunkedZipOutputStream out)
     throws IOException {
   out.putNextEntry(srcFile, destPath);
 }