/** * 解压缩功能 * * @throws Exception */ public int upZipFile(File zipFile, String folderPath)throws ZipException,IOException { /...
分类:
移动开发 时间:
2014-12-13 15:09:24
阅读次数:
183
Linux下,使用unzip解压时,报错:End-of-central-directory signature not found. Either this file is nota zipfile, or it constitutes one disk of a multi-part archiv...
分类:
其他好文 时间:
2014-12-06 20:16:37
阅读次数:
417
本文参考http://stackoverflow.com/questions/9813243/extract-files-from-zip-file-and-retain-mod-date-python-2-7-1-on-windows-7 1 import os 2 import time 3 f...
分类:
其他好文 时间:
2014-12-05 12:21:15
阅读次数:
189
第七题地址:http://www.pythonchallenge.com/pc/def/channel.html
根据提示,我们看到,试一试之后发现可以把channel.html改成channel.zip,然后下载得到一个zip文件。
打开zip文件,其中的readme.txt,我们得到如下的提示
welcome to my zipped list.
hint1: star...
分类:
编程语言 时间:
2014-10-28 13:59:25
阅读次数:
280
JAVA中对jar文件或zip文件解压的时候,可以使用JDK内置的API:JarFile和ZipFile,在windows下解压这2种格式文件的时候,经常报以下错误:
Exception in thread "main" java.lang.IllegalArgumentException: MALFORMED
at java.util.zip.ZipCoder.toString(ZipCo...
分类:
编程语言 时间:
2014-10-24 18:55:11
阅读次数:
285
import java.io.*;import java.util.*;import java.util.zip.ZipOutputStream;import java.util.zip.ZipEntry;import java.util.zip.ZipFile;public class FileM...
分类:
编程语言 时间:
2014-09-24 19:24:17
阅读次数:
283
需要 import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipFile;
对文件进行解压操作
ant.jar 的 下载地址 http://download.csdn.net/detail/qq490691606/7935909
maven中的配置
com.s...
分类:
编程语言 时间:
2014-09-22 09:56:22
阅读次数:
242
string zipfile = "c:\\a.zip"; //方法1 FileStream fs = new FileStream(zipfile, F...
分类:
其他好文 时间:
2014-09-09 17:45:09
阅读次数:
135
SharpZipLib 文件/文件夹压缩一、ZipFile ZipFile类用于选择文件或文件夹进行压缩生成压缩包。 常用属性:属性说明Count文件数目(注意是在ComitUpdat之后才有)Password压缩包密码Size压缩包占用空间大小Name压缩包名称,默认输出是文件路径ZipEnt.....
分类:
其他好文 时间:
2014-08-22 16:08:39
阅读次数:
247
对一批文件进行压缩处理,采用system 调用linux 压缩命令进行文件压缩。命令公用代码:function addZip($webdocs, $zipfile, $param, $file){ system("cd $webdocs; tar $param $zipfile \"".$fi...
分类:
Web程序 时间:
2014-08-08 15:41:46
阅读次数:
279