


xml parsing - code example to save the modification results after adding, deleting, modifying and checking operations
一、可扩展标记语言xml:Extensible Markup Language
1、XML的作用:1)统一数据传输的格式。2)做小型数据库[文件型数据库]。3)做配置文件 .ini .propertity .xml .cfg
2、XML文件的基本格式:
标签:分为双标签和单标签,双标签的开头和结尾标签名必须一致,大小写一样,/ 开头的是结尾标签,单标签必须在 > 前加上 / 来结尾,单标签中不能放文本。
属性:在开始标签中定义一些名值对,值一定是字符串
3、XML文件的基本构成:
1)在第一行是XML声明
2)必须且只能有一对根标签
3)标签可以一层一层嵌
二、写一个简单的xml文档stus.xml然后用Dom进行解析。
DOM : Document Object Model 文档对象模型
DOM解析的基本思路:将整个XML文件一次性读入内存,将整个XML看做一棵文档树,XML中的每一个标签,属性,文本都看做是树上的一个结点,然后可以对结点进行增删改查的操作。
已经编辑好的stus.xml文档
<?xml version="1.0" encoding="UTF-8"?> <stus Class="1401" > <stu num="01"> <name>张三</name> <age>19</age> <sex>男</sex> </stu> <stu num="02"> <name>李四</name> <age>20</age> <sex>女</sex> </stu> <stu num="03"> <name>王五</name> <age>21</age> <sex>男</sex> </stu> </stus>
三、开始解析
创建解析工厂
// 得到解析工厂对象 DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); // 生产一个解析器对象 DocumentBuilder builder = factory.newDocumentBuilder(); // 开始解析xml文件,得到的解析结果是一个Document对象,Document对象叫做文档树对象 Document dom = builder.parse("stus.xml");
1、增加节点
基本思路:首先创建一个新的元素节点,将元素节点追加到根节点后面,设置其节点属性。创建标签,设置标签文本内容,最后将新标签添加到新的元素节点中。
代码:
// 创建一个新的元素节点 Element stu = dom.createElement("stu"); // 将元素节点追加到根节点后面 root.appendChild(stu); // 设置节点属性 stu.setAttribute("num", "04"); // 创建标签 Element name = dom.createElement("name"); Element age = dom.createElement("age"); Element sex = dom.createElement("sex"); // 设置标签文本内容 name.setTextContent("赵六"); age.setTextContent("19"); sex.setTextContent("女"); // 把标签添加到新的元素节点stu中 stu.appendChild(name); stu.appendChild(age); stu.appendChild(sex);
2、删除节点
基本思路:获得要删除的节点,然后得到节点的属性值,与要删除的节点的属性值进行比较,如果该属性值对应的节点存在则移除该节点。
代码:
// 获得根节点 Element root = (Element) dom.getFirstChild(); // 获得所有stu节点 NodeList list = dom.getElementsByTagName("stu"); for (int i = 0; i < list.getLength(); i++) { Node node = list.item(i); if (node instanceof Element) { Element e = (Element) node; // 得到节点的属性值,与要删除的结点的属性值进行比较,然后移除该属性值对应的结点 String num = e.getAttribute("num"); if (num.equals("02")) { root.removeChild(e); break; } } }
3、修改节点
基本思路:获得要修改的节点,修改其属性值,然后获得该节点下的标签,修改标签中的文本内容。
代码:
// 修改节点属性 for (int j = 0; j < list.getLength(); j++) { Node no = list.item(j); if (no instanceof Element) { Element el = (Element) no; String n = el.getAttribute("num"); if (n.contains("01")) { el.setAttribute("num", "05"); // 修改标签值 NodeList li = el.getChildNodes(); for (int x = 0; x < li.getLength(); x++) { Node d = li.item(x); if (d instanceof Element) { Element ee = (Element) d; String noN = ee.getNodeName(); if (noN.equals("name")) { ee.setTextContent("小白"); } else if (noN.equals("age")) { ee.setTextContent("11"); } else if (noN.equals("sex")) { ee.setTextContent("男"); } } } }
4、查找节点
基本思路:获得所有的节点,用 需要查找的结点的属性值与所有节点进行比较,如果该节点存在,就打印该节点的属性值及其节点下标签的内容。
代码:
for (int j = 0; j < list.getLength(); j++) { Node no = list.item(j); if (no instanceof Element) { Element el = (Element) no; String n = el.getAttribute("num"); //查找节点,显示其属性值及标签内容 if(n.equals("03")){ System.out.println(no.getNodeName()+"\t"+n+no.getTextContent()); } } }
4、保存修改后的xml文档
基本思路:先将内存中的Document对象写到xml文件中,然后将整个Document对象作为要写入xml文件的数据源,最后将数据源写入目标文件。
代码:
// 将内存中的Document对象写到xml文件中 TransformerFactory tf = TransformerFactory.newInstance(); Transformer former = tf.newTransformer(); former.setParameter("version", "1.0"); former.setParameter("encoding", "GBK"); // 将整个Document对象作为要写入xml文件的数据源 DOMSource xmlSource = new DOMSource(dom); // 要写入的目标文件 StreamResult outputTarget = new StreamResult(new File("F:\\stus2.xml")); former.transform(xmlSource, outputTarget);
The above is the detailed content of xml parsing - code example to save the modification results after adding, deleting, modifying and checking operations. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Can XML files be opened with PPT? XML, Extensible Markup Language (Extensible Markup Language), is a universal markup language that is widely used in data exchange and data storage. Compared with HTML, XML is more flexible and can define its own tags and data structures, making the storage and exchange of data more convenient and unified. PPT, or PowerPoint, is a software developed by Microsoft for creating presentations. It provides a comprehensive way of

Implementing filtering and sorting of XML data using Python Introduction: XML is a commonly used data exchange format that stores data in the form of tags and attributes. When processing XML data, we often need to filter and sort the data. Python provides many useful tools and libraries to process XML data. This article will introduce how to use Python to filter and sort XML data. Reading the XML file Before we begin, we need to read the XML file. Python has many XML processing libraries,

Convert XML data in Python to CSV format XML (ExtensibleMarkupLanguage) is an extensible markup language commonly used for data storage and transmission. CSV (CommaSeparatedValues) is a comma-delimited text file format commonly used for data import and export. When processing data, sometimes it is necessary to convert XML data to CSV format for easy analysis and processing. Python is a powerful

Using Python to merge and deduplicate XML data XML (eXtensibleMarkupLanguage) is a markup language used to store and transmit data. When processing XML data, sometimes we need to merge multiple XML files into one, or remove duplicate data. This article will introduce how to use Python to implement XML data merging and deduplication, and give corresponding code examples. 1. XML data merging When we have multiple XML files, we need to merge them

Python implements conversion between XML and JSON Introduction: In the daily development process, we often need to convert data between different formats. XML and JSON are common data exchange formats. In Python, we can use various libraries to convert between XML and JSON. This article will introduce several commonly used methods, with code examples. 1. To convert XML to JSON in Python, we can use the xml.etree.ElementTree module

Handling Errors and Exceptions in XML Using Python XML is a commonly used data format used to store and represent structured data. When we use Python to process XML, sometimes we may encounter some errors and exceptions. In this article, I will introduce how to use Python to handle errors and exceptions in XML, and provide some sample code for reference. Use try-except statement to catch XML parsing errors When we use Python to parse XML, sometimes we may encounter some

Importing XML data into the database using PHP Introduction: During development, we often need to import external data into the database for further processing and analysis. As a commonly used data exchange format, XML is often used to store and transmit structured data. This article will introduce how to use PHP to import XML data into a database. Step 1: Parse the XML file First, we need to parse the XML file and extract the required data. PHP provides several ways to parse XML, the most commonly used of which is using Simple

Go language is an efficient, concise and easy-to-learn programming language. It is favored by developers because of its advantages in concurrent programming and network programming. In actual development, database operations are an indispensable part. This article will introduce how to use Go language to implement database addition, deletion, modification and query operations. In Go language, we usually use third-party libraries to operate databases, such as commonly used sql packages, gorm, etc. Here we take the sql package as an example to introduce how to implement the addition, deletion, modification and query operations of the database. Assume we are using a MySQL database.
