国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網站 > Apache > 正文

apache ant進行zip解壓縮操作示例分享

2024-08-27 18:25:31
字體:
來源:轉載
供稿:網友

需要導入ant.jar包,apache網站(http://ant.apache.org/bindownload.cgi)下載即可。

復制代碼 代碼如下:
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.zip.ZipOutputStream;

import org.apache.tools.ant.Project;
import org.apache.tools.ant.taskdefs.Expand;
import org.apache.tools.zip.ZipEntry;

import com.xyq.io.util.CloseIoUtil;

public class ZipUtil {

 private static final String ENCODE = "UTF-8";

 public static void zip(String inputFilePath, String zipFileName) {

  File inputFile = new File(inputFilePath);
  if (!inputFile.exists())
   throw new RuntimeException("原始文件不存在!!!");
  File basetarZipFile = new File(zipFileName).getParentFile();
  if (!basetarZipFile.exists() && !basetarZipFile.mkdirs())
   throw new RuntimeException("目標文件無法創建!!!");
  BufferedOutputStream bos = null;
  FileOutputStream out = null;
  ZipOutputStream zOut = null;
  try {
   // 創建文件輸出對象out,提示:注意中文支持
   out = new FileOutputStream(new String(zipFileName.getBytes(ENCODE)));
   bos = new BufferedOutputStream(out);
   //

主站蜘蛛池模板: 萨迦县| 四川省| 从化市| 浦城县| 卢氏县| 怀集县| 江口县| 措勤县| 上栗县| 夏邑县| 昌吉市| 读书| 昆明市| 托里县| 富蕴县| 江陵县| 颍上县| 逊克县| 泸定县| 瓦房店市| 遂宁市| 新竹市| 邹平县| 皮山县| 义马市| 望城县| 观塘区| 闽清县| 扶沟县| 罗江县| 盐边县| 井研县| 英山县| 方山县| 富川| 上饶市| 正安县| 三亚市| 尼玛县| 乌兰县| 玛纳斯县|