加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

读取xml

发布时间:2020-12-16 05:53:55 所属栏目:百科 来源:网络整理
导读:package com.ad.cpm.util; import java.io.File; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import org.w3c.dom.Document; import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class ReadXml
package com.ad.cpm.util; import java.io.File; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import org.w3c.dom.Document; import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class ReadXml { /** * 根据传入名称返回值 * @param xmlName :需要取出的配置value * @return */ public static String getReadXml(String xmlName){ String value = ""; String xmlfileUrl = SpringWebContext.getRequest().getSession().getServletContext().getRealPath("/")+"WEB-INFclassesconfxmlconfigure.xml"; try { File file = new File(xmlfileUrl); DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder db = dbf.newDocumentBuilder(); Document doc = db.parse(file); doc.getDocumentElement().normalize(); NodeList nodeLst = doc.getElementsByTagName(xmlName); if(nodeLst.getLength() > 0){ Node fstNode = nodeLst.item(0); value = fstNode.getFirstChild().getNodeValue(); } } catch (Exception e) { e.printStackTrace(); } return value; } public static void main(String[] args) { String uu = SpringWebContext.getRequest().getSession().getServletContext().getRealPath("/"); System.out.println(uu); } }

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读