您的位置:首页 > 移动开发 > Android开发

Android 利用Java实现压缩与解压缩(zip、gzip)支持中文路径

2011-12-06 17:08 861 查看

  zip扮演着归档和压缩两个角色;gzip并不将文件归档,仅只是对单个文件进行压缩,所以,在UNIX平台上,命令tar通常用来创建一个档案文件,然后命令gzip来将档案文件压缩。

  Java I/O类库还收录了一些能读写压缩格式流的类。要想提供压缩功能,只要把它们包在已有的I/O类的外面就行了。这些类不是Reader和Writer,而是InputStream和OutStreamput的子类。这是因为压缩算法是针对byte而不是字符的。

  相关类与接口:

  Checksum 接口:被类Adler32和CRC32实现的接口

  Adler32 :使用Alder32算法来计算Checksum数目

  CRC32 :使用CRC32算法来计算Checksum数目

  CheckedInputStream :InputStream派生类,可得到输入流的校验和Checksum,用于校验数据的完整性

  CheckedOutputStream :OutputStream派生类,可得到输出流的校验和Checksum, 用于校验数据的完整性

  DeflaterOutputStream :压缩类的基类。

  ZipOutputStream :DeflaterOutputStream的一个子类,把数据压缩成Zip文件格式。

  GZIPOutputStream :DeflaterOutputStream的一个子类,把数据压缩成GZip文件格式

  InflaterInputStream :解压缩类的基类

  ZipInputStream :InflaterInputStream的一个子类,能解压缩Zip格式的数据

  GZIPInputStream :InflaterInputStream的一个子类,能解压缩Zip格式的数据

  ZipEntry 类:表示 ZIP 文件条目

  ZipFile 类:此类用于从 ZIP 文件读取条目

 

 

用GZIP进行对单个文件压缩

  GZIP的接口比较简单,因此如果你只需对一个流进行压缩的话,可以使用它。当然它可以压缩字符流,与可以压缩字节流,下面是一个对GBK编码格式的文本文件进行压缩的。

  压缩类的用法非常简单;只要用GZIPOutputStream 或ZipOutputStream把输出流包起来,再用GZIPInputStream 或ZipInputStream把输入流包起来就行了。剩下的都是些普通的I/O操作。

  Java代码

1 import java.io.BufferedOutputStream;

2 import java.io.BufferedReader;

3 import java.io.FileInputStream;

4 import java.io.FileOutputStream;

5 import java.io.IOException;

6 import java.io.InputStreamReader;

7 import java.util.zip.GZIPInputStream;

8 import java.util.zip.GZIPOutputStream;

9 public class GZIPcompress {

10 public static void main(String[] args) throws IOException {

11 //做准备压缩一个字符文件,注,这里的字符文件要是GBK编码方式的

12 BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream("e:/tmp/source.txt"), "GBK"));

13   //使用GZIPOutputStream包装OutputStream流,使其具体压缩特性,最后会生成test.txt.gz压缩包

14   //并且里面有一个名为test.txt的文件

15   BufferedOutputStream out = new BufferedOutputStream(new GZIPOutputStream(new FileOutputStream("test.txt.gz")));

16   System.out.println("开始写压缩文件...");

17   int c;

18   while ((c = in.read()) != -1) {

19   /*

20   * 注,这里是压缩一个字符文件,前面是以字符流来读的,不能直接存入c,因为c已是Unicode

21   * 码,这样会丢掉信息的(当然本身编码格式就不对),所以这里要以GBK来解后再存入。

22   */

23    out.write(String.valueOf((char) c).getBytes("GBK"));

24   }

25   in.close();

26   out.close();

27   System.out.println("开始读压缩文件...");

28   //使用GZIPInputStream包装InputStream流,使其具有解压特性

29   BufferedReader in2 = new BufferedReader(new InputStreamReader(

30   new GZIPInputStream(new FileInputStream("test.txt.gz")), "GBK"));

31   String s;

32   //读取压缩文件里的内容

33   while ((s = in2.readLine()) != null) {

34    System.out.println(s);

35    }

36    in2.close();

37    }

38 }

1 import java.io.BufferedOutputStream;

2 import java.io.BufferedReader;

3 import java.io.FileInputStream;

4 import java.io.FileOutputStream;

5 import java.io.IOException;

6 import java.io.InputStreamReader;

7 import java.util.zip.GZIPInputStream;

8 import java.util.zip.GZIPOutputStream;

9 public class GZIPcompress {

10 public static void main(String[] args) throws IOException {

11 //做准备压缩一个字符文件,注,这里的字符文件要是GBK编码方式的

12 BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream("e:/tmp/source.txt"), "GBK"));

13   //使用GZIPOutputStream包装OutputStream流,使其具体压缩特性,最后会生成test.txt.gz压缩包

14   //并且里面有一个名为test.txt的文件

15   BufferedOutputStream out = new BufferedOutputStream(new GZIPOutputStream(new FileOutputStream("test.txt.gz")));

16   System.out.println("开始写压缩文件...");

17   int c;

18   while ((c = in.read()) != -1) {

19   /*

20   * 注,这里是压缩一个字符文件,前面是以字符流来读的,不能直接存入c,因为c已是Unicode

21   * 码,这样会丢掉信息的(当然本身编码格式就不对),所以这里要以GBK来解后再存入。

22   */

23    out.write(String.valueOf((char) c).getBytes("GBK"));

24   }

25   in.close();

26   out.close();

27   System.out.println("开始读压缩文件...");

28   //使用GZIPInputStream包装InputStream流,使其具有解压特性

29   BufferedReader in2 = new BufferedReader(new InputStreamReader(

30   new GZIPInputStream(new FileInputStream("test.txt.gz")), "GBK"));

31   String s;

32   //读取压缩文件里的内容

33   while ((s = in2.readLine()) != null) {

34    System.out.println(s);

35    }

36    in2.close();

37    }

38 }

 

使用Zip进行多个文件压缩

  

  Java对Zip格式类库支持得比较全面,得用它可以把多个文件压缩成一个压缩包。这个类库使用的是标准Zip格式,所以能与很多的压缩工具兼容。

  ZipOutputStream类有设置压缩方法以及在压缩方式下使用的压缩级别,zipOutputStream.setMethod(int method)设置用于条目的默认压缩方法。只要没有为单个 ZIP 文件条目指定压缩方法,就使用ZipOutputStream所设置的压缩方法来存储,默认值为 ZipOutputStream.DEFLATED(表示进行压缩存储),还可以设置成STORED(表示仅打包归档存储)。

  ZipOutputStream在设置了压缩方法为DEFLATED后,我们还可以进一步使用setLevel(int level)方法来设置压缩级别,压缩级别值为0-9共10个级别(值越大,表示压缩越利害),默认为 Deflater.DEFAULT_COMPRESSION=-1。当然我们也可以通过条目ZipEntry的setMethod方法为单个条件设置压缩方法。

  

  类ZipEntry描述了存储在ZIP文件中的压缩文件。类中包含有多种方法可以用来设置和获得ZIP条目的信息。类ZipEntry是被
ZipFile[zipFile.getInputStream(ZipEntry entry)]和ZipInputStream使用来读取ZIP文件,ZipOutputStream来写入ZIP文件的。有以下这些有用的方法:getName()返回条目名称、isDirectory()如果为目录条目,则返回 true(目录条目定义为其名称以 '/' 结尾的条目)、setMethod(int method) 设置条目的压缩方法,可以为 ZipOutputStream.STORED 或 ZipOutputStream .DEFLATED。

  下面实例我们使用了apache的zip工具包(所在包为ant.jar ),因为java类型自带的不支持中文路径,不过两者使用的方式是一样的,只是apache压缩工具多了设置编码方式的接口,其他基本上是一样的。另外,如果使用org.apache.tools.zip.ZipOutputStream来压缩的话,我们只能使用 org.apache.tools.zip.ZipEntry来解压,而不能使用java.util.zip.ZipInputStream来解压读取了,当然apache并未提供ZipInputStream类。

  Java代码

1   import java.io.BufferedInputStream;

2   import java.io.BufferedOutputStream;

3   import java.io.File;

4   import java.io.FileInputStream;

5   import java.io.FileNotFoundException;

6   import java.io.FileOutputStream;

7   import java.io.IOException;

8   import java.util.Enumeration;

9   import java.util.zip.CRC32;

10   import java.util.zip.CheckedInputStream;

11   import java.util.zip.CheckedOutputStream;

12   import java.util.zip.Deflater;

13   import java.util.zip.ZipException;

14   import java.util.zip.ZipInputStream;

15   import org.apache.tools.zip.ZipEntry;

16   import org.apache.tools.zip.ZipFile;

17   import org.apache.tools.zip.ZipOutputStream;

18   /**

19   *

20   * 提供对单个文件与目录的压缩,并支持是否需要创建压缩源目录、中文路径

21   *

22   * @author jzj

23   */

24   public class ZipCompress {

25   private static boolean isCreateSrcDir = true;//是否创建源目录

26   /**

27   * @param args

28   * @throws IOException

29   */

30   public static void main(String[] args) throws IOException {

31     String src = "m:/新建文本文档.txt";//指定压缩源,可以是目录或文件

32     String decompressDir = "e:/tmp/decompress";//解压路径

33     String archive = "e:/tmp/test.zip";//压缩包路径

34     String comment = "Java Zip 测试.";//压缩包注释

35     //----压缩文件或目录

36     writeByApacheZipOutputStream(src, archive, comment);

37     /*

38     * 读压缩文件,注释掉,因为使用的是apache的压缩类,所以使用java类库中

39     * 解压类时出错,这里不能运行

40     */

41     //readByZipInputStream();

42     //----使用apace ZipFile读取压缩文件

43     readByApacheZipFile(archive, decompressDir);

44   }

45   

46

47   public static void writeByApacheZipOutputStream(String src, String archive, String comment) throws FileNotFoundException, IOException {

48     //----压缩文件:

49     FileOutputStream f = new FileOutputStream(archive);

50     //使用指定校验和创建输出流

51     CheckedOutputStream csum = new CheckedOutputStream(f, new CRC32());

52     ZipOutputStream zos = new ZipOutputStream(csum);

53     //支持中文

54     zos.setEncoding("GBK");

55     BufferedOutputStream out = new BufferedOutputStream(zos);

56     //设置压缩包注释

57     zos.setComment(comment);

58     //启用压缩

59     zos.setMethod(ZipOutputStream.DEFLATED);

60     //压缩级别为最强压缩,但时间要花得多一点

61     zos.setLevel(Deflater.BEST_COMPRESSION);

62     File srcFile = new File(src);

63     if (!srcFile.exists() || (srcFile.isDirectory() && srcFile.list().length == 0)) {

64       throw new FileNotFoundException("File must exist and ZIP file must have at least one entry.");

65     }

66     //获取压缩源所在父目录

67     src = src.replaceAll("\\", "/");

68     String prefixDir = null;

69     if (srcFile.isFile()) {

70       prefixDir = src.substring(0, src.lastIndexOf("/") + 1);

71     } else {

72       prefixDir = (src.replaceAll("/$", "") + "/");

73     }

74     //如果不是根目录

75     if (prefixDir.indexOf("/") != (prefixDir.length() - 1) && isCreateSrcDir) {

76       prefixDir = prefixDir.replaceAll("[^/]+/$", "");

77     }

78     //开始压缩

79     writeRecursive(zos, out, srcFile, prefixDir);

80     out.close();

81     // 注:校验和要在流关闭后才准备,一定要放在流被关闭后使用

82     System.out.println("Checksum: " + csum.getChecksum().getValue());

83     BufferedInputStream bi;

84   }

1   /**

2   * 使用 org.apache.tools.zip.ZipFile 解压文件,它与 java 类库中的

3   * java.util.zip.ZipFile 使用方式是一新的,只不过多了设置编码方式的

4   * 接口。

5   *

6   * 注,apache 没有提供 ZipInputStream 类,所以只能使用它提供的ZipFile

7   * 来读取压缩文件。

8   * @param archive 压缩包路径

9   * @param decompressDir 解压路径

10   * @throws IOException

11   * @throws FileNotFoundException

12   * @throws ZipException

13   */

14   public static void readByApacheZipFile(String archive, String decompressDir) throws IOException, FileNotFoundException, ZipException {

15     BufferedInputStream bi;

16     ZipFile zf = new ZipFile(archive, "GBK");//支持中文

17     Enumeration e = zf.getEntries();

18     while (e.hasMoreElements()) {

19       ZipEntry ze2 = (ZipEntry) e.nextElement();

20       String entryName = ze2.getName();

21       String path = decompressDir + "/" + entryName;

22       if (ze2.isDirectory()) {

23         System.out.println("正在创建解压目录 - " + entryName);  

24         File decompressDirFile = new File(path);

25         if (!decompressDirFile.exists()) {

26           decompressDirFile.mkdirs();

27         }

28       } else {

29         System.out.println("正在创建解压文件 - " + entryName);

30         String fileDir = path.substring(0, path.lastIndexOf("/"));

31         File fileDirFile = new File(fileDir);

32         if (!fileDirFile.exists()) {

33           fileDirFile.mkdirs();

34         }

35         BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(decompressDir + "/" + entryName));

36         bi = new BufferedInputStream(zf.getInputStream(ze2));

37         byte[] readContent = new byte[1024];

38         int readCount = bi.read(readContent);

39         while (readCount != -1) {

40           bos.write(readContent, 0, readCount);

41           readCount = bi.read(readContent);

42         }

43         bos.close();

44       }

45     }

46     zf.close();

47   }

48

49

50

51

52   /**

53   * 使用 java api 中的 ZipInputStream 类解压文件,但如果压缩时采用了

54   * org.apache.tools.zip.ZipOutputStream时,而不是 java 类库中的

55   * java.util.zip.ZipOutputStream时,该方法不能使用,原因就是编码方

56   * 式不一致导致,运行时会抛如下异常:

57   * java.lang.IllegalArgumentException

58   * at java.util.zip.ZipInputStream.getUTF8String(ZipInputStream.java:290)

59   *

60   * 当然,如果压缩包使用的是java类库的java.util.zip.ZipOutputStream

61   * 压缩而成是不会有问题的,但它不支持中文

62   *

63   * @param archive 压缩包路径

64   * @param decompressDir 解压路径

65   * @throws FileNotFoundException

66   * @throws IOException

67   */

68   public static void readByZipInputStream(String archive, String decompressDir) throws FileNotFoundException, IOException {

69     BufferedInputStream bi;

70     //----解压文件(ZIP文件的解压缩实质上就是从输入流中读取数据):

71     System.out.println("开始读压缩文件");

72     FileInputStream fi = new FileInputStream(archive);

73     CheckedInputStream csumi = new CheckedInputStream(fi, new CRC32());

74     ZipInputStream in2 = new ZipInputStream(csumi);

75     bi = new BufferedInputStream(in2);

76     java.util.zip.ZipEntry ze;//压缩文件条目

77     //遍历压缩包中的文件条目

78     while ((ze = in2.getNextEntry()) != null) {

79       String entryName = ze.getName();

80       if (ze.isDirectory()) {

81         System.out.println("正在创建解压目录 - " + entryName);

82         File decompressDirFile = new File(decompressDir + "/" + entryName);

83         if (!decompressDirFile.exists()) {

84           decompressDirFile.mkdirs();

85         }

86       } else {

87         System.out.println("正在创建解压文件 - " + entryName);

88         BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(decompressDir + "/" + entryName));

89         byte[] buffer = new byte[1024];

90         int readCount = bi.read(buffer);

91         while (readCount != -1) {

92           bos.write(buffer, 0, readCount);

93           readCount = bi.read(buffer);

94         }

95         bos.close();

96       }

97     }

98

99     bi.close();

100     System.out.println("Checksum: " + csumi.getChecksum().getValue());

101   }

102

103

104

105

106   /**

107   * 递归压缩

108   *

109   * 使用 org.apache.tools.zip.ZipOutputStream 类进行压缩,它的好处就是支持中文路径,

110   * 而Java类库中的 java.util.zip.ZipOutputStream 压缩中文文件名时压缩包会出现乱码。

111   * 使用 apache 中的这个类与 java 类库中的用法是一新的,只是能设置编码方式了。

112   *

113   * @param zos

114   * @param bo

115   * @param srcFile

116   * @param prefixDir

117   * @throws IOException

118   * @throws FileNotFoundException

119   */

120   private static void writeRecursive(ZipOutputStream zos,BufferedOutputStream bo,File srcFile, String prefixDir) throws IOException, FileNotFoundException {

121     ZipEntry zipEntry;

122     String filePath = srcFile.getAbsolutePath().replaceAll("\\", "/").replaceAll("//", "/");

123     if (srcFile.isDirectory()) {

124       filePath = filePath.replaceAll("/$", "") + "/";

125     }

126     String entryName = filePath.replace(prefixDir, "").replaceAll("/$", "");

127     if (srcFile.isDirectory()) {

128       if (!"".equals(entryName)) {

129         System.out.println("正在创建目录 - " + srcFile.getAbsolutePath() + " entry/");

130         zos.putNextEntry(zipEntry);

131       }

132       File srcFiles[] = srcFile.listFiles();

133       for (int i = 0; i < srcFiles.length; i++) {

134         writeRecursive(zos, bo, srcFiles[i], prefixDir);

135       }

136     } else {

137       System.out.println("正在写文件 - " + srcFile.getAbsolutePath() + " entrym:/新建文本文档.txt";//指定压缩源,可以是目录或文件

138       String decompressDir = "e:/tmp/decompress";//解压路径

139       String archive = "e:/tmp/test.zip";//压缩包路径

140       String comment = "Java Zip 测试.";//压缩包注释

141       //----压缩文件或目录

142       writeByApacheZipOutputStream(src, archive, comment);

143       /*

144       * 读压缩文件,注释掉,因为使用的是apache的压缩类,所以使用java类库中

145       * 解压类时出错,这里不能运行

146       */

147       //readByZipInputStream();

148       //----使用apace ZipFile读取压缩文件

149       readByApacheZipFile(archive, decompressDir);

150     }

151     public static void writeByApacheZipOutputStream(String src, String archive, String comment) throws FileNotFoundException, IOException {

152     //----压缩文件:

153     FileOutputStream f = new FileOutputStream(archive); 

154     //使用指定校验和创建输出流

155     CheckedOutputStream csum = new CheckedOutputStream(f, new CRC32());

156     ZipOutputStream zos = new ZipOutputStream(csum);

157     //支持中文

158     zos.setEncoding("GBK");

159     BufferedOutputStream out = new BufferedOutputStream(zos);

160     //设置压缩包注释

161     zos.setComment(comment);

162     //启用压缩

163     zos.setMethod(ZipOutputStream.DEFLATED);

164     //压缩级别为最强压缩,但时间要花得多一点

165     zos.setLevel(Deflater.BEST_COMPRESSION);

166     File srcFile = new File(src);

167     if (!srcFile.exists() || (srcFile.isDirectory() && srcFile.list().length == 0)) {

168       throw new FileNotFoundException("File must exist and ZIP file must have at least one entry.");

169     }

170

171

172     //获取压缩源所在父目录

173     src = src.replaceAll("\\", "/");

174     String prefixDir = null;

175     if (srcFile.isFile()) {

176       prefixDir = src.substring(0, src.lastIndexOf("/") + 1);

177     } else {

178       prefixDir = (src.replaceAll("/$", "") + "/");

179     }

180

181

182     //如果不是根目录

183     if (prefixDir.indexOf("/") != (prefixDir.length() - 1) && isCreateSrcDir) {

184       prefixDir = prefixDir.replaceAll("[^/]+/$", "");

185     }

186   

187

188     //开始压缩

189     writeRecursive(zos, out, srcFile, prefixDir);

190     out.close();

191     // 注:校验和要在流关闭后才准备,一定要放在流被关闭后使用

192     System.out.println("Checksum: " + csum.getChecksum().getValue());

193     BufferedInputStream bi;

194   }

  要想把文件加入压缩包,你必须将ZipEntry对象传给putNextEntry(
)。ZipEntry是一个接口很复杂的对象,它能让你设置和读取Zip文件里的某条记录的信息,这些信息包括:文件名,压缩前和压缩后的大小,日期,CRC校验码,附加字段,注释,压缩方法,是否是目录。虽然标准的Zip格式是支持口令的,但是Java的Zip类库却不支持。而且ZipEntry
却只提供了CRC的接口,而CheckedInputStream和CheckedOutputStream却支持Adler32和CRC32两种校验码。虽然这是底层的Zip格式的限制,但却妨碍了你使用更快的Adler32了。

  要想提取文件,可以用ZipInputStream的getNextEntry( )方法。只要压缩包里还有ZipEntry,它就会把它提取出来。此外还有一个更简洁的办法,你可以用ZipFile对象去读文件。ZipFile有一个 entries()方法,它可以返回ZipEntries的Enumeration。然后通过zipFile. getInputStream(ZipEntry entry)获取压缩流就可以读取相应条目了。

  要想读取校验码,必须先获取Checksum对象。我们这里用的是CheckedOutputStream和 CheckedInputStream,不过你也可以使用Checksum。java.util.zip包中比较重要校验算法类是Adler32和 CRC32,它们实现了java.util.zip.Checksum接口,并估算了压缩数据的校验和(checksum)。在运算速度方面,Adler32算法比CRC32算法要有一定的优势;但在数据可信度方面,CRC32算法则要更胜一筹。GetValue方法可以用来获得当前的
checksum值,reset方法能够重新设置checksum为其缺省的值。

  校验和一般用来校验文件和信息是否正确的传送。举个例子,假设你想创建一个ZIP文件,然后将其传送到远程计算机上。当到达远程计算机后,你就可以使用checksum检验在传输过程中文件是否发生错误,有点像下载文件后我们可以使用哈希值来校验文件下载过程是否出错了。

  Zip类里还有一个让人莫名其妙的setComment( )方法。如ZipCompress.java所示,写文件的时候,你可以加注释,但是读文件的时候,ZipInputSream却不提供接口。看来它的注释功能完全是针对条目的,是用ZipEntry实现的。

  当然,GZIP和Zip不光能用来压缩文件——它还能压缩任何东西,包括要通过网络传输的数据。

源文
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: