• XML文件的解析操作


    本期精彩

    目录

    需具备的知识

    1、Java中配置文件的三种配置位置及读取方式

    2、dome4j常用方法

    3、xpath语法

    解析XML的代码操作


    需具备的知识

    1、Java中配置文件的三种配置位置及读取方式

    类名.class.getResourceAsStream("xxx"):拿到同包下的文件

    类名.class.getResourceAsStream("/xxx"):拿到根目录下的文件

    context.getResourceAsStream("/WIN-INF/xxx"):拿到WIN-INF安全路径

    2、dome4j常用方法

    selectNodes:拿到多个元素

    selectSingleNode:拿到单个元素

    getRootElement():拿到根元素

    attributeValue:只有元素才可以点出这个方法来获取值

    getText:拿到元素文本

    注:元素可以是节点,但是元素中的属性是节点不是元素

    3、xpath语法

    /:定位路径

    @:属性

    解析XML的代码操作

    1、需要解析的XML案例👇(config.xml文件)

    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <!DOCTYPE config[
    3. <!ELEMENT config (action*)>
    4. <!ELEMENT action (forward*)>
    5. <!ELEMENT forward EMPTY>
    6. <!ATTLIST action
    7. path CDATA #REQUIRED
    8. type CDATA #REQUIRED
    9. >
    10. <!ATTLIST forward
    11. name CDATA #REQUIRED
    12. path CDATA #REQUIRED
    13. redirect (true|false) "false"
    14. >
    15. ]>
    16. <config>
    17. <action path="/studentAction" type="org.lisen.mvc.action.StudentAction">
    18. <forward name="students" path="/students/studentList.jsp" redirect="false"/>
    19. </action>
    20. <action path="/studentAction02" type="org.lisen.mvc.action.StudentAction">
    21. <forward name="students02" path="/students/studentList.jsp" redirect="false"/>
    22. </action>
    23. </config>

    2、在编写解析代码之前需要导入的jar包👇

    3、编写解析操作的代码👇

    1. public class XmlReader {
    2. public static void main(String[] args) throws Exception {
    3. InputStream in = XmlReader.class.getResourceAsStream("/config.xml");
    4. SAXReader reader = new SAXReader();
    5. Document doc = reader.read(in);
    6. Element rootElement = doc.getRootElement();
    7. List<Element> actions = rootElement.selectNodes("action");
    8. for(Element e: actions) {
    9. String path = e.attributeValue("path");
    10. String type = e.attributeValue("type");
    11. System.out.println("action path = "+path);
    12. System.out.println("action type = "+type);
    13. List<Element> forwards = e.selectNodes("forward");
    14. for(Element f: forwards) {
    15. String name = f.attributeValue("name");
    16. String fPath = f.attributeValue("path");
    17. String redirect = f.attributeValue("redirect");
    18. System.out.println("forward name = "+name);
    19. System.out.println("forward fPath = "+fPath);
    20. System.out.println("forward redirect = "+redirect);
    21. }
    22. System.out.println("已结束解析");
    23. }
    24. }
    25. }

    输出结果👇(可以看到已经获取到了上面所提供的XML文件中的相关元素和节点了)

  • 相关阅读:
    二叉树问题——对称二叉树
    string类的模拟实现
    【滤波跟踪】基于北方苍鹰和粒子群算法优化粒子滤波器实现目标滤波跟踪附matlab代码
    Golang专题——fsnotify 文件及目录监控
    新手入门MyBatis的问题及如何解决?
    Apifox:满足你对 Api 的所有幻想
    C++之设计模式
    基于Alexnet深度学习网络的人员口罩识别算法matlab仿真
    【开源软件推荐】gorm 数据库反向生成status结构工具 gormt
    C++之 内联函数
  • 原文地址:https://blog.csdn.net/yifei_345678/article/details/125575134