How To Modify and Save XML with the XmlDocument Class in the .NET Framework SDK (301233)
The information in this article applies to:
- Microsoft .NET Framework 1.0
- Microsoft .NET Framework 1.1
- Microsoft .NET Framework Class Libraries 1.0
- Microsoft .NET Framework Class Libraries 1.1
This article was previously published under Q301233 This article refers to the following .NET Framework Class
Library namespace:
SUMMARY This sample illustrates how to update and save XML with the
XmlDocument class. Requirements The following list outlines the recommended hardware, software,
network infrastructure, and service packs that you will need:
- Microsoft Windows 2000 Professional, Windows 2000 Server,
Windows 2000 Advanced Server, or Windows NT 4.0 Server
- Microsoft Visual Studio .NET
This article assumes that you are familiar with the following
topics:
- XML terminology
- Creating and reading an XML file
- The Document Object Model (DOM)
back to the topHow to Use the XmlDocument Class to Save XML- Create a new Visual Basic or C# Console Application in
Visual Studio .NET.
- Make sure that the project references the System.Xml namespace.
- Use the Imports statement on the Xml namespace so that you are not required to qualify XmlTextReader declarations later in your code. You must use the Imports statement prior to any other declarations.
Visual Basic .NET Code
Imports System.Xml C# Code
using System.Xml;
- Create a new XmlDocument class, and use the Load method to load it.
The XmlDocument class represents the XML document and has a Load method to load the document from a file, stream, or an XmlReader.
Visual Basic .NET Code
Dim myXmlDocument as XmlDocument = new XmlDocument()
myXmlDocument.Load ("books.xml")
C# CodeXmlDocument myXmlDocument = new XmlDocument();
myXmlDocument.Load ("books.xml");
Note that, although the Books.xml file is used here, you can create
your own Books.xml file. A sample Books.xml file is also included with Visual
Studio .NET and .NET Framework Software Development Kit (SDK). - The XmlNode object provides methods and properties to manipulate a node. Use
the XmlNode object that the DocumentElement property of the XmlDocument returns to manipulate an XML node.
Visual Basic .NET Code
Dim node as XmlNode
node = myXmlDocument.DocumentElement
C# Code
XmlNode node;
node = myXmlDocument.DocumentElement;
- Iterate through the children of the document element, and
find all the "price" nodes. Use the For Each looping construct with the ChildNodes property of the Node object to find all nodes that have a Name property that is equal to "price". Double the price of the book.
Visual Basic .NET CodeDim node2 As XmlNode 'Used for internal loop.
Dim nodePriceText As XmlNode
For Each node In node.ChildNodes
'Find the price child node.
For Each node2 In node.ChildNodes
If node2.Name = "price" Then
' nodePriceText = node2.InnerText
Dim price As Decimal
price = System.Decimal.Parse(node2.InnerText)
' Double the price.
Dim newprice As String
newprice = CType(price * 2, Decimal).ToString("#.00")
Console.WriteLine("Old Price = " & node2.InnerText & Strings.Chr(9) & "New price = " & newprice)
node2.InnerText = newprice
End If
Next
Next
C# Codeforeach(XmlNode node1 in node.ChildNodes)
foreach (XmlNode node2 in node1.ChildNodes)
if (node2.Name == "price")
{
Decimal price = Decimal.Parse(node2.InnerText);
// Increase all the book prices by 20%
String newprice = ((Decimal)price*(new Decimal(1.20))).ToString("#.00");
Console.WriteLine("Old Price = " + node2.InnerText + "\tNew price = " + newprice);
node2.InnerText = newprice;
}
- Use the Save method of the XmlDocument class to save the altered XML to a new file that is named
InflatedPriceBooks.xml.
You can use the Save method to save XML data to files, streams, and XmlWriters. Visual Basic .NET Code
myXmlDocument.Save("InflatedPriceBooks.xml")
C# CodemyXmlDocument.Save("InflatedPriceBooks.xml");
- Build and run your project.
back to the
topREFERENCES For more information, visit the following Web sites: back to the
top
Modification Type: | Minor | Last Reviewed: | 10/18/2006 |
---|
Keywords: | kbHOWTOmaster KB301233 kbAudDeveloper |
---|
|