男人应似海  

2011年12月1日

摘要: java解压zip文件的代码/** * 解压zip格式的压缩包 * * @param filePath * 压缩文件路径 * @param outPath * 输出路径 * @return 解压成功或失败标志 */public static Boolean unZip(String filePath, String outPath) {String unzipfile = inPath; // 解压缩的文件名try {ZipInputStream zin = new ZipInputStream(new FileInputStream(unzipfile));ZipEntry entry;/. 阅读全文
posted @ 2011-12-01 20:47 男人应似海 阅读(4417) 评论(0) 推荐(0)