• 获得xml的绝对路径,然后遍历


    原来的方法是写写死绝对路径

    SAXReader reader = new SAXReader();
    Document document = reader.read(new File("F:\workspace\pdtzjc\web\WEB-INF\classes\toDoSumNum.xml"));
    Element root = document.getRootElement();//获取根节点

    -----------------------------------------

    出现的问题是我的workspace在F盘,我提交大家的workspace不一定在F盘这样就造成错误,因为路径不一样

    -----------------------------------------

    现在用的是

    String path=request.getRealPath("\WEB-INF\classes\toDoSumNum.xml");

    SAXReader reader = new SAXReader();
    Document document = reader.read(new File(path));

    关于为什么getrealpath里面怎么写

    我代码的action在pdtzjc文件夹里面,可以看到pdtzjc与WEB-INF是平行的关系,

    在action里面getrealpath得到的就是pdtzjc的父节点,即web然后看到在往下遍历,

    是在不行debug看看结果就知道了

  • 相关阅读:
    hibernate03增删改查
    hibernate02环境的搭建
    hibernate01ORM的引入
    20170623_oracle_优化与体系结构
    20170626_oracle_数据库设计
    logging模块
    hashlib模块
    json和pickle模块
    sys模块
    os模块
  • 原文地址:https://www.cnblogs.com/thomasbc/p/6623519.html
Copyright © 2020-2023  润新知