java解析zip中xml文件的内容

文章介绍了如何利用ZipInputStream逐个读取zip文件中的条目,无需一次性加载大文件,然后使用SAXReader解析XML内容,适用于处理大文件的场景。
摘要由CSDN通过智能技术生成

代码:

/**
         * 使用了ZipInputStream类来读取zip文件
         * 可以逐个读取zip文件中的条目
         * 而不需要将整个zip文件加载到内存中
         * 这种方式更加高效,特别是在处理大文件时
         * */
        // 要进行解压缩的zip文件
        File zipFile = new File("C:\\Users\\18323\\Downloads\\test_1709549502880.zip");
        // 2.解析读取zip文件
        ZipInputStream in = null;
        try{
             in = new ZipInputStream(new FileInputStream(zipFile), Charset.forName("gbk"));
            // 遍历Zip文件中的每个子文件
            ZipEntry zipEntry = null;
            while ((zipEntry = in.getNextEntry()) != null) {
                // 获取zip压缩包中的子文件名称
                String zipEntryFileName = zipEntry.getName();
                System.out.println("文件名:" + zipEntryFileName);
                // 将ZipInputStream转换为ByteArrayInputStream
                int len;
                byte[] buf = new byte[1024];
                ByteOutputStream out =null;
                ByteArrayInputStream byteIs = null;
                try {
                    out = new ByteOutputStream();
                    if ((len = in.read(buf)) != -1){
                        out.write(buf,0,len);
                    }
                    byteIs =new ByteArrayInputStream(out.toByteArray());
                    InputSource inr = new InputSource(byteIs);
                    inr.setEncoding("UTF-8");
                    // 使用SAXReader解析XML
                    SAXReader saxReader = new SAXReader();
                    Document document = saxReader.read(inr);
                    Element rootElement = document.getRootElement();
                    List<Element> elements = rootElement.elements();
                    for (Element element : elements) {
             			//去除文档中的内容
                        System.out.println(element.attributeValue("name"));
                        System.out.println(element.attributeValue("age"));
                        System.out.println(element.attributeValue("jjMaxLength"));
                    }
                }catch (IOException e){
                    e.printStackTrace();
                }finally {
                    out.close();
                    byteIs.close();
                }
            }
        } catch (IOException | DocumentException e) {
            e.printStackTrace();
        }finally {
            if (in != null){
                try {
                    in.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

诸葛博仌

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值