码迷,mamicode.com
首页 > 编程语言 > 详细

java 解压.gz文件

时间:2017-04-06 17:48:06      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:文件流   path   解压   []   工作流   fileinput   文件   void   gzip   

1.//建立gzip压缩文件输入流 

2.建立gzip解压工作流

 fileInputStream = new FileInputStream(filePath + fileName);
            //解凍する
            GZIPInputStream Zin = new GZIPInputStream(fileInputStream);
            File outdir = new File(filePath);
            this.extractFile(Zin, outdir, "1.txt");

将文件流进行输出到文件

 private static void extractFile(GZIPInputStream in, File outdir, String name) throws IOException {
        byte[] buffer = new byte[BUFFER_SIZE];
        BufferedOutputStream out = new BufferedOutputStream(
            new FileOutputStream(new File(outdir, name)));
        int count = -1;
        while ((count = in.read(buffer)) != -1) {
          out.write(buffer, 0, count);
        }
        out.close();
      }

 

java 解压.gz文件

标签:文件流   path   解压   []   工作流   fileinput   文件   void   gzip   

原文地址:http://www.cnblogs.com/sunxun/p/6674539.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!