Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This article describes some sample steps and sample code to navigate XML by using the XPathNavigator class in Visual Basic 2005 or in Visual Basic .NET.
Original product version: Visual Basic 2005, Visual Basic .NET
Original KB number: 301111
Summary
This step-by-step article illustrates how to navigate Extensible Markup Language (XML) documents with an XPathNavigator object that is created from an XPathDocument object. This sample loads an XPathDocument object with XML data, creates an XPathNavigator object as a view onto the data, and displays the XML by walking through the document.
For a Microsoft Visual C# version of this article, see Use Visual C# to navigate XML documents with the XPathNavigator class.
Requirements
The following list outlines the recommended hardware, software, network infrastructure, and service packs that you need:
- Windows Server 2003, Windows 2000 Professional, Windows 2000 Server, Windows 2000 Advanced Server, or Windows NT 4.0 Server
- Visual Studio 2005 or Visual Studio .NET
This article assumes that you are familiar with the following topics:
- XML terminology
- Creating and reading XML files
- XML Path Language (XPath) syntax
Use the XPathNavigator class to navigate XML
In Visual Studio 2005 or in Visual Studio. NET, create a Visual Basic 2005 or Visual Basic .NET Console Application.
Note
This example uses a file that is named Books.xml. You can create your own Books.xml file, or you can use the sample that is included with the .NET Software Development Kit (SDK) Quickstarts. If you have the Quickstarts installed, Books.xml is located in the folder:
\Program Files\Microsoft.NET\FrameworkSDK\Samples\Quickstart\Howto\Samples\Xml\Transformxml\VBAlternatively, you can obtain this file by visiting: Sample XML File (books.xml)
You must copy Books.xml to the
\Bin\Debugfolder that is located under the folder in which you created this project.Make sure that the project references the
System.Xmlnamespace.Use the
Importsstatement on theXmlandXPathnamespaces so that you are not required to qualify declarations in those namespaces later in your code. You must use theImportsstatement prior to any other declarations.Imports System.Xml Imports System.Xml.XPathDeclare the appropriate variables. Declare an
XPathDocumentobject to hold the XML document and anXPathNavigatorobject to evaluate XPath expressions and move through the document. Declare a String object to hold the XPath expression. Add the declaration code in the Main procedure in Module1.Dim nav As XPathNavigator Dim docNav As XPathDocumentLoad an
XPathDocumentobject with the sample fileBooks.xml. TheXPathDocumentclass uses Extensible Stylesheet Language Transformations (XSLT) to provide a fast and performance-oriented cache for XML document processing. It is similar to the XML Document Object Model (DOM) but is highly optimized for XSLT processing and the XPath data model.'Open the XML. docNav = New XPathDocument("books.xml")Create an
XPathNavigatorobject from the document.XPathNavigatorenables you to move through both the attributes nodes and the namespace nodes in an XML document.'Create a navigator to query with XPath. nav = docNav.CreateNavigatorMove to the root of the document with the
MoveToRootmethod.MoveToRootsets the navigator to the document node that contains the entire tree of nodes.'Initial XPathNavigator to start at the root. nav.MoveToRoot()Use the
MoveToFirstChildmethod to move to the children of the XML document. TheMoveToFirstChildmethod moves to the first child of the current node. In the case of theBooks.xmlsource, you are moving away from the root document into the children, theCommentsection, and the Bookstore node.'Move to the first child node (comment field). nav.MoveToFirstChild()Use the
MoveToNextmethod to iterate through nodes at the sibling level. TheMoveToNextmethod moves to the next sibling of the current node.'Loop through all the root nodes. Do ... Loop While nav.MoveToNextUse the
NodeTypeproperty to make sure that you are only processing element nodes, and use theValueproperty to display the text representation of the element.Do 'Find the first element. If nav.NodeType = XPathNodeType.Element Then 'If children exist. If nav.HasChildren Then 'Move to the first child. nav.MoveToFirstChild()'Loop through all the children. Do 'Display the data. Console.Write("The XML string for this child ") Console.WriteLine("is '{0}'", nav.Value) Loop While nav.MoveToNext End If End If Loop While nav.MoveToNextUse the
HasAttributesproperty to determine whether a node has any attributes. You can also use other methods, such asMoveToNextAttribute, to move to an attribute and inspect its value.Note
This code segment only walks through the descendants of the root node and not the entire tree.
Do 'Find the first element. If nav.NodeType = XPathNodeType.Element Then 'if children exist If nav.HasChildren Then 'Move to the first child. nav.MoveToFirstChild()'Loop through all the children. Do 'Display the data. Console.Write("The XML string for this child ") Console.WriteLine("is '{0}'", nav.Value)'Check for attributes. If nav.HasAttributes Then Console.WriteLine("This node has attributes") End If Loop While nav.MoveToNext End If End If Loop While nav.MoveToNextUse the
ReadLinemethod of theConsoleobject to add a pause at the end of the console display to more readily display the above results.'Pause. Console.ReadLine()Build and run your Console Application project.
Complete code listing
Imports System.Xml
Imports System.Xml.XPath
Module Module1
Sub Main()
Dim nav As XPathNavigator
Dim docNav As XPathDocument
docNav = New XPathDocument("books.xml")
nav = docNav.CreateNavigator
nav.MoveToRoot()'Move to the first child node (comment field).
nav.MoveToFirstChild()
Do
'Find the first element.
If nav.NodeType = XPathNodeType.Element Then
'if children exist
If nav.HasChildren Then
'Move to the first child.
nav.MoveToFirstChild()'Loop through all the children.
Do
'Display the data.
Console.Write("The XML string for this child ")
Console.WriteLine("is '{0}'", nav.Value)'Check for attributes.
If nav.HasAttributes Then
Console.WriteLine("This node has attributes")
End If
Loop While nav.MoveToNext
End If
End If
Loop While nav.MoveToNext
'Pause.
Console.ReadLine()
End Sub
End Module