前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >java中无法解析为类型_java无法解析导入的包

java中无法解析为类型_java无法解析导入的包

作者头像
全栈程序员站长
发布2022-10-28 09:03:05
4.7K0
发布2022-10-28 09:03:05
举报
文章被收录于专栏:全栈程序员必看

大家好,又见面了,我是你们的朋友全栈君。

1、了解.odt文件

.odt文件是openoffice软件产生的文档格式,可以直接用office打开,这其实就是一个压缩包,可以使用解压软件打开,里面有一个content.xml文件,这个文件内有<text:p>标签,标签内就是展示出来的内容。

2、解压文件

上面说了.odt文件就是一个压缩包,所以可以直接用解压缩包的方式解压,

代码语言:javascript
复制
/**
* @param filePath 源文件路径
*/
public void parseFile(String filePath) throws IOException{
    File file = new File(filePath);
    // 原文件是否存在
    if(!file.exists()){
        throw new FileNotFoundException("文件不存在");
    }
    // 解压到源文件的同级目录下
    String parent = file.getParent();
    File file1 = new File(parent);
    odtUncompress(file, file1);
}

/**
     * zip文件解压
     * @param inputFile  待解压文件夹/文件
     * @param destDirPath  解压路径
     */
    public static void odtUncompress(String inputFile,String destDirPath) throws Exception {
        File srcFile = new File(inputFile);//获取当前压缩文件
        // 判断源文件是否存在
        if (!srcFile.exists()) {
            throw new Exception(srcFile.getPath() + "所指文件不存在");
        }
        ZipFile zipFile = new ZipFile(srcFile);//创建压缩文件对象
        //开始解压
        Enumeration<?> entries = zipFile.entries();
        while (entries.hasMoreElements()) {
            ZipEntry entry = (ZipEntry) entries.nextElement();
            // 如果是文件夹,就创建个文件夹
            if (entry.isDirectory()) {
                String dirPath = destDirPath + "/" + entry.getName();
                srcFile.mkdirs();
            } else {
                // 如果是文件,就先创建一个文件,然后用io流把内容copy过去
                File targetFile = new File(destDirPath + "/" + entry.getName());
                // 保证这个文件的父文件夹必须要存在
                if (!targetFile.getParentFile().exists()) {
                    targetFile.getParentFile().mkdirs();
                }
                targetFile.createNewFile();
                // 将压缩文件内容写入到这个文件中
                InputStream is = zipFile.getInputStream(entry);
                FileOutputStream fos = new FileOutputStream(targetFile);
                int len;
                byte[] buf = new byte[1024];
                while ((len = is.read(buf)) != -1) {
                    fos.write(buf, 0, len);
                }
                fos.close();
                is.close();
            }
        }
    }

3、获取xml文件内容

因为我是需要修改xml文件内容,所以我还是从.odt文件入手,直接拿到xml文件

代码语言:javascript
复制
// 记录标签内容
private static String str = "";

/**
* .odt文件的路径
* @param srcFile
* @throws Exception
*/
public void originalContent(String srcFile) throws Exception {
    ZipFile zipFile = new ZipFile(srcFile);
    Enumeration entries = zipFile.entries();
    ZipEntry entry;
    org.w3c.dom.Document doc = null;
    while (entries.hasMoreElements()) {
        entry = (ZipEntry) entries.nextElement();
        // 只操作xml文件
        if (entry.getName().equals("content.xml")) {
            // 构建文档
            DocumentBuilderFactory domFactory = DocumentBuilderFactory.newInstance();
            domFactory.setNamespaceAware(true);
            DocumentBuilder docBuilder = domFactory.newDocumentBuilder();
            doc = docBuilder.parse(zipFile.getInputStream(entry));

            // 获取节点
            NodeList list = doc.getElementsByTagName("text:p");

            for (int a = 0; a < list.getLength(); a++) {
                Node node =list.item(a);
                // 递归获取标签内容
                getText(node);
                System.out.println(str);
                // 清空数据,记录下个标签的内容
                str = "";
            }
        }
    }
}


// 递归获取子标签的内容
    private static void getText(org.w3c.dom.Node node) {
        if (node.getChildNodes().getLength() > 1) {
            NodeList childNodes = node.getChildNodes();
            for (int a = 0; a < childNodes.getLength(); a++) {
                getText(node.getChildNodes().item(a));
            }
        } else {
            if (node.getNodeValue() != null) {
                // str用来连接标签内容 用static修饰
                str = str + node.getNodeValue();
            }
            if (node.getFirstChild() != null) {
                str = str + node.getFirstChild().getNodeValue();
            }
        }
    }

至于将解压后的文件在压缩回去,也是和普通的文件压缩一样的,大家可以去看一下别人的,我就不写了,只要将后缀改成.odt就可以了。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/197436.html原文链接:https://javaforall.cn

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022年9月4日 下,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 1、了解.odt文件
  • 2、解压文件
相关产品与服务
文件存储
文件存储(Cloud File Storage,CFS)为您提供安全可靠、可扩展的共享文件存储服务。文件存储可与腾讯云服务器、容器服务、批量计算等服务搭配使用,为多个计算节点提供容量和性能可弹性扩展的高性能共享存储。腾讯云文件存储的管理界面简单、易使用,可实现对现有应用的无缝集成;按实际用量付费,为您节约成本,简化 IT 运维工作。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档