JAVA读取XML文件并解析获取元素、属性值、子元素信息

关键字

  XML读取  InputStream   DocumentBuilderFactory   Element     Node

前言

  最近在学习Spring源码时,碰到读取XML配置文件的方法,整理下,备忘并和大家分享

正文(直接上源码)

XML文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"> <bean name="HelloWorld" class="com.huishe.HelloWord">
<property name="textone" value="Hello World!"></property>
<property name="texttwo" value="Hello SUN!"></property>
</bean> </beans>

XMLParse解析源码

package com.huishe.testOfSpring;

import java.io.FileInputStream;
import java.io.InputStream; import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory; import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList; public class XMLParse { public static void main(String[] args) throws Exception {
//1-获取XML-IO流
InputStream xmlInputStream = getXmlInputStream("xml/tinyioc.xml");
//2-解析XML-IO流 ,获取Document 对象,以及Document对象 的根节点
Element rootElement = getRootElementFromIs(xmlInputStream);
//3~5-从根元素解析得到元素
parseElementFromRoot(rootElement);     //控制台输出:
    //name == HelloWorld
    //className == com.huishe.HelloWord
    //propertyEle: name == textone
    //propertyEle: value == Hello World!
    //propertyEle: name == texttwo
    //propertyEle: value == Hello SUN!
} //1-获取XML-IO流
private static InputStream getXmlInputStream(String xmlPath){
InputStream inputStream = null;
try {
//1-把要解析的 XML 文档转化为输入流,以便 DOM 解析器解析它
inputStream= new FileInputStream(xmlPath);
} catch (Exception e) {
e.printStackTrace();
}
return inputStream;
}
//2-解析XML-IO流 ,获取Document 对象,以及Document对象 的根节点
private static Element getRootElementFromIs(InputStream inputStream) throws Exception {
if(inputStream == null){
return null;
}
/*
* javax.xml.parsers 包中的DocumentBuilderFactory用于创建DOM模式的解析器对象 ,
* DocumentBuilderFactory是一个抽象工厂类,它不能直接实例化,但该类提供了一个newInstance方法 ,
* 这个方法会根据本地平台默认安装的解析器,自动创建一个工厂的对象并返回。
*/
//2-调用 DocumentBuilderFactory.newInstance() 方法得到创建 DOM 解析器的工厂
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
//3-调用工厂对象的 newDocumentBuilder方法得到 DOM 解析器对象。
DocumentBuilder docBuilder = factory.newDocumentBuilder();
//4-调用 DOM 解析器对象的 parse() 方法解析 XML 文档,得到代表整个文档的 Document 对象,进行可以利用DOM特性对整个XML文档进行操作了。
Document doc = docBuilder.parse(inputStream);
//5-得到 XML 文档的根节点
Element root =doc.getDocumentElement();
//6-关闭流
if(inputStream != null){
inputStream.close();
}
return root;
} //3-从根元素解析得到元素
private static void parseElementFromRoot(Element root) {
NodeList nl = root.getChildNodes();
for (int i = 0; i < nl.getLength(); i++) {
Node node = nl.item(i);
if (node instanceof Element) {
Element ele = (Element) node;
//4-从元素解析得到属性值
getDataFromElement(ele);
//5-从元素解析特定子元素并解析(以property为例)
getCertainElementFromParentElement(ele);
}
}
} //4-从元素解析得到属性值
private static void getDataFromElement(Element ele) {
String name = ele.getAttribute("name");//根据属性名称读取属性值
System.out.println("name == " + name);
String className = ele.getAttribute("class");
System.out.println("className == " + className);
}
//5-从元素解析特定子元素并解析(以property为例)
private static void getCertainElementFromParentElement(Element ele) {
NodeList propertyEleList = ele.getElementsByTagName("property");//根据标签名称获取标签元素列表
for (int i = 0; i < propertyEleList.getLength(); i++) {
Node node = propertyEleList.item(i);
if (node instanceof Element) {
Element propertyEle = (Element) node;
String name = propertyEle.getAttribute("name");
System.out.println("propertyEle: name == " + name);
String value = propertyEle.getAttribute("value");
System.out.println("propertyEle: value == " + value);
}
} } }
 
 

总结

  读取XML配置涉及到IO、DocumentBuilderFactory、Node等概念,这里只使用,不具体分析

参考文献

1- https://blog.csdn.net/hua1017177499/article/details/78985166

JAVA读取XML文件并解析获取元素、属性值、子元素信息的更多相关文章

  1. java 读取XML文件作为配置文件

    首先,贴上自己的实例: XML文件:NewFile.xml(该文件与src目录同级) <?xml version="1.0" encoding="UTF-8&quo ...

  2. java读取xml文件报“org.xml.sax.SAXParseException: Premature end of file” .

    背景:java读取xml文件,xml文件内容只有“<?xml version="1.0" encoding="UTF-8"?>”一行 java读取该 ...

  3. java读取XML文件的四种方式

    java读取XML文件的四种方式 Xml代码 <?xml version="1.0" encoding="GB2312"?> <RESULT& ...

  4. java读取 xml文件

    java读取xml文件的四种方法  转自https://www.cnblogs.com/lingyao/p/5708929.html Xml代码 1 <?xml version="1. ...

  5. 通过Java读取xml文件内容

    读取XML中的内容就需要对XML进行解析,目前对XML进行解析的方法分为四种: 下面解析的方法是DOM4J,需要下载jar包dom4j:https://dom4j.github.io/ package ...

  6. 用java操作XML文件(DOM解析方式)

    XML 可扩展标记语言(Extensible Markup Language),是独立于软件和硬件的传输工具. XML的作用: (1)用作配置文件 (2)简化数据共享 (3)简化数据传输 XML DO ...

  7. JAVA读取XML文件数据

    XML文档内容如下: <?xml version="1.0" encoding="UTF-8"?> <root> <field t ...

  8. java读取XML文件,及封装XML字符串

    package com.yyl.text; import java.io.FileInputStream; import java.util.ArrayList; import org.junit.T ...

  9. 【Java】XML文件的解析

    import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import ja ...

随机推荐

  1. js记录用户访问页面和停留时间

    1.setInterval setInterval() 方法可按照指定的周期(以毫秒计)来调用函数或计算表达式. setInterval(code,millisec[,"lang" ...

  2. 保存对象报错with two open Sessions

    purorderService.save(newpur);出现如下 org.springframework.orm.hibernate3.HibernateSystemException: illeg ...

  3. 服务发现 - consul 的介绍、部署和使用(转)

    什么是服务发现 相关源码: spring cloud demo 微服务的框架体系中,服务发现是不能不提的一个模块.我相信了解或者熟悉微服务的童鞋应该都知道它的重要性.这里我只是简单的提一下,毕竟这不是 ...

  4. 使用 Asp.Net Response.Write() 制作实时进度条

    准备: 一个 StudyResponse.aspx 页面和 CodeBehind 文件. Web 页面中的内容如下: <%@ Page Language="C#" AutoE ...

  5. C# Excel转换为Json

    demo:https://files.cnblogs.com/files/guxingy/Excel%E8%BD%AC%E6%8D%A2%E4%B8%BAJson%E5%AF%B9%E8%B1%A1. ...

  6. js高级-函数变量提升

    var a = 10; function f1(){ console.log(a) //undefined  函数变量提升了 函数执行之前想创建了函数的EC 把函数里面声明的变量初始化undefine ...

  7. platform_device module

    参考: http://www.wowotech.net/linux_kenrel/platform_device.html 1. platform_device 需要在注册 platform_driv ...

  8. vue-concise-slider 一个轻量的vue幻灯片组件

    vue-concise-slider 一个轻量的vue幻灯片组件 阅读 541 收藏 35 2017-07-03 原文链接:github.com 外卖订单处理有烦恼?试试美团点评餐饮开放平台吧,可实现 ...

  9. svn 更新lib库时,报错

    svn: E195012: Unable to find repository location for svn:// in revision 9718 Can't revert without re ...

  10. java.security.MessageDigest (2) 生成安全令牌!

    时候,我们需要产生一个数据,这个数据保存了用户的信息,但加密后仍然有可能被人使用,即便他人不确切的了解详细信息... 好比,我们在上网的时候,很多网页都会有一个信息,是否保存登录信息,以便下次可以直接 ...