text文件压缩包解析与下载

//压缩包下载

 private StreamedContent newsTemplate;
//该方法是对压缩包进行下载
    public StreamedContent getNewsTemplate() {
//对多个Text文件进行压缩
        ZipFiles(files,file);
 
        FileInputStream inputStream = null;
        try {
            inputStream = new FileInputStream(FaceContextUtil.getCurtExternalContext().getRealPath("") +
                    "/resources/pack/appData.zip");
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
        newsTemplate = new DefaultStreamedContent(inputStream, "", "appData.zip");
        return newsTemplate;
    }
 
 
 
 
    //压缩多个文件
    public static void ZipFiles(java.io.File[] srcfile, java.io.File zipfile) {
        byte[] buf = new byte[1024];
        try {
          //创建zip压缩包输出流
            ZipOutputStream out = new ZipOutputStream(new FileOutputStream(zipfile));
            // 压缩文件
            for (int i = 0; i < srcfile.length; i++) {
            //读取数组中的文件
                FileInputStream in = new FileInputStream(srcfile[i]);
                // 将该文件名添加到zip输出
                out.putNextEntry(new ZipEntry(srcfile[i].getName()));
                // Transfer bytes from the file to the ZIP file
                //传送字节到zip包的文件中
                int len;
                while ( (len = in.read(buf)) > 0) {
                    out.write(buf, 0, len);
                }
                // Complete the entry
                //完成第一个文件的传入
                out.closeEntry();
                in.close();
            }
            // Complete the ZIP file
            //完成压缩,关闭输出流
            out.close();
            System.out.println("压缩完成.");
        }
        catch (IOException e) {
            e.printStackTrace();
        }
    }
 
对zip包进行解压
Enumeration /nju:mê'rei shên/列举 计算 项目
 
 public static void unZipFiles(File zipfile,String descDir){
        try {
            ZipFile zf=new ZipFile(zipfile);
            //Enumeration接口的对象,他生成一系列元素,一次生成一个, 连续调用nextElement方法返回一系列连续元素
            //zf为所有元素,entries为Enumeration的一个元素,ertries.hasMoreElements为是否还存在下一个元素
            for(Enumeration entries=zf.entries();entries.hasMoreElements();){
                ZipEntry entry=(ZipEntry) entries.nextElement();
                String zipEntryName=entry.getName();
                InputStream in=zf.getInputStream(entry);
                OutputStream out=new FileOutputStream(descDir+zipEntryName);
                byte[] buf1=new byte[1024];
                int len;
                while((len=in.read(buf1))>0){
                    out.write(buf1,0,len);
                }
                in.close();
                out.close();
                System.out.println("解压缩完成.");
            }
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
 
 
 
不解压,直接读取压缩包文件 ,根据json转换,加入集合
    public String readZipFile(String file) throws Exception {
        list = new ArrayList<RltVip>();
        list2 = new ArrayList<RltStaR>();
        list3 = new ArrayList<RltAppDev>();
        //创建Zip压缩文件
        ZipFile zipFile = null;
        //创建Zip流
        ZipInputStream zin = null;
        InputStream in = null;
        StringBuffer sbf = null;
        try {
            zipFile = new ZipFile(file);
            in = new BufferedInputStream(new FileInputStream(file));
            zin = new ZipInputStream(in);
            ZipEntry ze;
            sbf = new StringBuffer();
            while ((ze = zin.getNextEntry()) != null) {
                Object lh = (Object) ze;
                String rv = String.valueOf(lh);
                if (ze.isDirectory()) {
                    return null;
                } else {
                    if (rv.equals("ResultVip.txt")) {
                        StringBuffer sBuffer = new StringBuffer();
                        // 这里的判断不能用ze.getSize() > 0, 当文件的大小很小时,会返回-1
                        if (ze.getSize() != 0) {
                            BufferedReader br = new BufferedReader(
                                    new InputStreamReader(
                                            zipFile.getInputStream(ze), Charset.forName("utf-8")));
                            String line;
                            while ((line = br.readLine()) != null) {
                                sBuffer.append(line + "\r\n");
                                try {
                                    RltVip vip = JsonHelper.CRAZY_GSON.fromJson(line, RltVip.class);
                                    list.add(vip);
                                } catch (Exception e) {
                                    rltVipIndex++;
                                    continue;
                                }
                            }
                            sbf.append(sBuffer);
                            br.close();
                        }
                    } else if (rv.equals("ResultStatistic.txt")) {
                        StringBuffer sBuffer = new StringBuffer();
                        // 这里的判断不能用ze.getSize() > 0, 当文件的大小很小时,会返回-1
                        if (ze.getSize() != 0) {
                            BufferedReader br = new BufferedReader(
                                    new InputStreamReader(
                                            zipFile.getInputStream(ze)));
                            String line;
                            while ((line = br.readLine()) != null) {
                                sBuffer.append(line + "\r\n");
                                try {
                                    RltStaR rltStaR1 = JsonHelper.CRAZY_GSON.fromJson(line, RltStaR.class);
                                    System.out.printf(rltStaR1.toString());
                                    list2.add(rltStaR1);
                                } catch (Exception e) {
                                    rltStatIndex++;
                                    continue;
                                }
 
                            }
                            sbf.append(sBuffer);
                            br.close();
                        }
                    } else if (rv.equals("ResultDevice.txt")) {
                        StringBuffer sBuffer = new StringBuffer();
                        // 这里的判断不能用ze.getSize() > 0, 当文件的大小很小时,会返回-1
                        if (ze.getSize() != 0) {
                            BufferedReader br = new BufferedReader(
                                    new InputStreamReader(
                                            zipFile.getInputStream(ze)));
                            String line;
                            while ((line = br.readLine()) != null) {
                                sBuffer.append(line + "\r\n");
                                try {
                                    RltAppDev rlt = JsonHelper.CRAZY_GSON.fromJson(line, RltAppDev.class);
                                    list3.add(rlt);
                                } catch (Exception e) {
                                    rltDevsIndex++;
                                    continue;
                                }
 
                            }
                            sbf.append(sBuffer);
                            br.close();
                        }
                    }
 
                }
            }
 
 
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if (in != null) {
                    in.close();
                }
                if (zin != null) {
                    zin.close();
                }
                if (zipFile != null) {
                    zipFile.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return sbf.toString();
    }

zip的打包与解包和包下载的更多相关文章

  1. .zip/.rar打包与解压

    Linux下如何解压.zip和.rar文件,对于Window下的常见压缩文件.zip和.rar,Linux也有相应的方法来解压它们: 1)对于zip linux下提供了zip和unzip程序,zip是 ...

  2. [Java] Java 打包成jar包 和 解压jar包

    解压jar包 jar xf xxx.jar 打包成jar包 方法一:通过jar命令 jar命令的用法: 下面是jar命令的帮助说明: 用法:jar {ctxui}[vfm0Me] [jar-file] ...

  3. Lua学习教程之 可变參数数据打包与解包

    利用table的pack与unpack进行数据打包与解包.測试代码例如以下: print("Test table.pack()----------------"); functio ...

  4. java zip 批量打包(java.util包和apache.tools包)

    /** * 文件批量打包 * @param zipPath 打包路径 * @param files 批量文件 */ public void zipOut(String zipPath,File[] f ...

  5. lambda表达式,filter,map,reduce,curry,打包与解包和

    当然是函数式那一套黑魔法啦,且听我细细道来. lambda表达式 也就是匿名函数. 用法:lambda 参数列表 : 返回值 例: +1函数 f=lambda x:x+1 max函数(条件语句的写法如 ...

  6. MPI 打包与解包函数 MPI_Pack(),MPI_Unpack()

    ▶ MPI 中与数据打包传输有关的几个函数 ● 函数 MPI_Pack() 与 MPI_Unpack() 的原型 MPI_METHOD MPI_Pack( _In_opt_ const void* i ...

  7. CentOS7 tar打包工具 打包,解包,打包压缩,打包解压缩

    tar命令 選項與參數: -c :建立打包檔案,可搭配 -v 來察看過程中被打包的檔名(filename) -t :察看打包檔案的內容含有哪些檔名,重點在察看『檔名』就是了: -x :解打包或解壓縮的 ...

  8. struct:二进制数据结构的打包与解包

    介绍 struct模块包括一些函数,这些函数可以完成字节串与原生Python数据类型(如数字和字符串)之间的转换 函数与Struct类 struct提供了一组处理结构值的模块级函数,另外还有一个Str ...

  9. Unix系统解压tar包时出现@LongLink错误

    Unix系统上使用tar命令解压tar包后,多了一个@LongLink的文件,并且原来的tar包解压后不完整.网上查了下,原因是AIX系统上tar命令自身的一个缺陷.解决办法:把该tar包上传到lin ...

随机推荐

  1. UCOS-信号标志组(学习笔记)

    信号标志组即根据各任务的信号进行逻辑运算,根据逻辑运算的结果决定是否进行.发送方指定向那个标志组的哪一位(响应位等于1表明向哪一位发)发1还是0.等待逻辑结果的任务指定等待那个标志组的哪几位.这几位按 ...

  2. UITouch 触摸事件处理(实例)

    来源:http://www.open-open.com/lib/view/open1341882439838.html 1. UITouch 的主要方法: - (void)touchesBegan:( ...

  3. dedeCMS安装,前端样式不显示

    因为dedeCMS样式引用用的是绝对路径:dede默认安装在网站的根目录. 所以,解决方法有三种: 1.修改代码路径,很不推荐,那么多页面可操作性低: 2.直接安装在站点根目录www目录,也行,但是容 ...

  4. Eclipse 中使用 ctrl 无法追踪函数的问题

    Eclipse 中使用 ctrl 无法追踪函数的问题 Eclipse 项目中应该有 .buildpath , .project 两个文件,如果 Eclipse 中使用 ctrl 无法追踪函数, 第一步 ...

  5. Delphi Socket 阻塞线程下为什么不触发OnRead和OnWrite事件

    //**********************************************************************************//说明: 阻塞线程下为什么不触 ...

  6. gomoblie flappy 源码分析:游戏逻辑

    本文主要讨论游戏规则逻辑,具体绘制技术请参看相关文章: gomoblie flappy 源码分析:图片素材和大小的处理 http://www.cnblogs.com/ghj1976/p/5222289 ...

  7. HYSBZ 1036 【树链剖分】

    思路: 裸裸的树链剖分.... 树链剖分就是把一棵树分成若干重链和轻链...然后保证形成的线段树上每条链是连续存储的.然后这样就能用线段树进行维护了. 但是每次一定要保证是在同一条链里边....思路就 ...

  8. android小细节

    1.资源包图片尽量控制在50k以内,否则可能读取失败 2.资源图片建议使用png格式,此格式在android系统上支持最好.对于jpeg和gif格式的图片,在android4.0以后版本,通过系统自缩 ...

  9. Redis应用

    一.什么是Redis? Redis是一个高性能的key-value内存数据库. 二.为什么使用Redis? Redis是NoSQL数据库,相比传统关系型数据库,内存数据库读写更快. 三.Redis怎么 ...

  10. history.back(-1)和history.go(-1)的区别

    history.back(-1):直接返回当前页的上一页,数据全部消息,是个新页面 history.go(-1):也是返回当前页的上一页,不过表单里的数据全部还在 返回到指定连接:document.l ...