search
HomeBackend DevelopmentC#.Net TutorialEasily process XML data in .NET Framework (5-1)
Easily process XML data in .NET Framework (5-1)Dec 20, 2016 pm 02:18 PM
.netxml data

??Design the XmlReadWriter class

??As mentioned earlier, XML reader and Writer work independently: reader only reads, writer only writes. Suppose your application needs to handle a long XML document, and the document has unstable data. Reader provides a good way to read the content of the document. Writer, on the other hand, is a very useful tool for creating XML document fragments, but if you want it to be both readable and writable, then you have to use XMLDOM. If the actual XML document is very large, another title will appear. What title is it? Should we load all this XML document into memory and then read and write it later? Let's first look at how to build a hybrid stream analyzer for parsing large XML DOMs.

??Like a normal read-only operation, use an ordinary XML reader to access nodes sequentially. The difference is that you can use XML writer to change attribute values ​​and node contents while reading. You use the reader to read each node in the source file, and the background writer creates a copy of the node. In this copy, you can add some new nodes, ignore or edit other nodes, and edit attribute values. When you're done making changes, you replace the old document with the new one.

??A simple and effective method is to copy the node object from the read-only stream to the write stream. This method can use two methods in the XmlTextWriter class: WriteAttributes method and WriteNode method. The WriteAttributes method reads all valid attributes of the node selected in the current reader, and then copies the attributes as a separate string to the current output stream. Similarly, the WriteNode method uses a similar method to handle other types of nodes except attribute nodes. The code snippet shown in Figure 10 demonstrates how to use the above two methods to create a copy of the source XML document and selectively modify certain nodes. The XML tree is accessed starting from the root of the tree, but only nodes of other types than attribute node types are output. You can integrate Reader and Writer in a new class and design a new interface so that it can read and write streams and access properties and nodes.

Figure 10 Using the WriteNode Method

XmlTextReader reader = new XmlTextReader(inputFile);

XmlTextWriter writer = new XmlTextWriter(outputFile);



//Configure reader and writer

writer.Formatting = Formatting.Indented;

reader.MoveToContent();



// Write root node

writer.WriteStartElement(reader.LocalName);



// Read and output every other node

int i=0;

while (reader.Read())

{

if (i % 2)

writer.WriteNode(reader, false);

i ;

}



// Close the root

writer.WriteEndElement ();



// Close reader and writer

writer.Close();

reader.Close();

?? My XmlTextReadWriter class is not persisted from the XmlReader or XmlWriter class. Instead, there are two other classes, one is a control class based on a read-only stream (stream), and the other is a control class based on a write-only stream. The method of the XmlTextReadWriter class uses the Reader object to read data and writes it to the Writer object. In order to adapt to different needs, the internal Reader and Writer objects are exposed through the read-only Reader and Writer properties. Figure 11 lists some methods of this class:

Figure 11 XmlTextReadWriter Class Methods

Method
Description

AddAttributeChange
Caches all the information needed to perform a change on a node attribute. processed during a successive call to WriteAttributes.

Read
Simple wrapper around the internal reader's Read method.

WriteAttributes
Specialized version of the writer's WriteAttributes method, writes out all the attributes for the given node, taking into account all the changes cached through the AddAttributeChange method.

WriteEndDocument
Terminates the current document in the writer and closes both the reader and the writer.

WriteStartDocument
Prepares the internal writer to output the document and add a default comment text and the standard XML prolog.


??This new class has a Read method, which is a simple encapsulation of Reader's read method. In addition, it provides WriterStartDocument and WriteEndDocument methods. They initialize/release (finalize) the internal Reader and writer objects respectively, and also handle all I/O operations. While reading the nodes in a loop, we can directly correct the nodes. For performance reasons, attributes must be modified first using the AddAttributeChange method. All modifications to a node's attributes will be stored in a temporary table. Finally, the modifications are submitted by calling the WriteAttribute method and the temporary table is cleared.

The above is the content of easily processing XML data (5-1) in .NET Framework. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Python实现XML数据的过滤和筛选Python实现XML数据的过滤和筛选Aug 09, 2023 am 10:13 AM

Python实现XML数据的过滤和筛选XML(eXtensibleMarkupLanguage)是一种用于存储和传输数据的标记语言,它具有灵活性和可扩展性,常被用于在不同系统之间进行数据交换。在处理XML数据时,我们经常需要对其进行过滤和筛选,以提取出我们所需的信息。本文将介绍如何使用Python来实现XML数据的过滤和筛选。导入所需模块在开始之前,我们

分享几个.NET开源的AI和LLM相关项目框架分享几个.NET开源的AI和LLM相关项目框架May 06, 2024 pm 04:43 PM

当今人工智能(AI)技术的发展如火如荼,它们在各个领域都展现出了巨大的潜力和影响力。今天大姚给大家分享4个.NET开源的AI模型LLM相关的项目框架,希望能为大家提供一些参考。https://github.com/YSGStudyHards/DotNetGuide/blob/main/docs/DotNet/DotNetProjectPicks.mdSemanticKernelSemanticKernel是一种开源的软件开发工具包(SDK),旨在将大型语言模型(LLM)如OpenAI、Azure

C#的就业前景如何C#的就业前景如何Oct 19, 2023 am 11:02 AM

无论您是初学者还是有经验的专业人士,掌握C#将为您的职业发展铺平道路。

Java框架和.NET框架的性能差异Java框架和.NET框架的性能差异Jun 03, 2024 am 09:19 AM

在高并发请求处理方面,.NETASP.NETCoreWebAPI性能优于JavaSpringMVC,原因包括:AOT提前编译,减少启动时间;更精细的内存管理,由开发人员负责分配和释放对象内存。

完全指南:如何使用php扩展SimpleXML读取和处理XML数据完全指南:如何使用php扩展SimpleXML读取和处理XML数据Jul 28, 2023 pm 02:46 PM

完全指南:如何使用PHP扩展SimpleXML读取和处理XML数据简介:在现代的Web开发中,处理和操作XML数据是一项非常常见的任务。PHP作为一种强大的服务器端脚本语言,提供了多种扩展和功能,用于处理和操作XML数据。其中,SimpleXML扩展是一种特别有用的工具,可以简化XML数据的读取和处理过程。本文将为您提供一个完整的指南,介绍如何使用PHP扩展

面向开发人员的.NET性能优化技术面向开发人员的.NET性能优化技术Sep 12, 2023 am 10:43 AM

如果你是一名.NET开发者,你必须意识到在交付高质量软件方面,优化功能和性能的重要性。通过熟练使用提供的资源并减少网站加载时间,你不仅为用户创造了愉快的体验,还能减少基础设施成本。

利用PHP函数处理XML数据利用PHP函数处理XML数据Jun 16, 2023 am 10:16 AM

XML(ExtensibleMarkupLanguage)是一种被广泛使用的数据格式,它被设计用于跨平台的数据传输和存储。在网络应用中,处理XML数据是非常常见的任务。本文将介绍如何使用PHP内置的XML函数处理XML数据。读取XML数据PHP提供了一组用于读取XML数据的函数。其中最常用的是simplexml_load_file函数。该函数将XML

使用PHP和XML来实现网站的多语言支持使用PHP和XML来实现网站的多语言支持Jul 31, 2023 pm 11:19 PM

使用PHP和XML来实现网站的多语言支持随着互联网的快速发展,越来越多的网站需要面向全球用户提供多语言支持。在设计一个多语言网站时,我们需要考虑用户界面、用户反馈信息、日志记录以及其他一些静态或动态内容的翻译。本文将介绍如何使用PHP和XML来实现网站的多语言支持。创建语言文件首先,我们需要创建一个语言文件,来存储各种语言的翻译文字。每个语言翻译文件都是一个

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor