XML Elements Fundamentals |
|
Introduction |
An element in an XML document is an object that begins with a start-tag, may contain a value, and may terminate with an end-tag. Based on this, the combination of a start-tag, the value, and the end-tag is called an element. An element can be more than that but for now, we will consider that an element is primarily characterized by a name and possibly a value. |
To support XML elements, the System.Xml namespace provides the XmlElement class. XmlElement is based on a class named XmlLinkedNode that itself is based on XmlNode. To access an XML element, you can declare a variable of type XmlElement but the main purpose of this class is to get an element from a DOM object. For this reason, the XmlElement class doesn't have a constructor you can use. Instead, and as we will learn, the other classes have methods that produce an XmlElement element you can manipulate as necessary. In the previous lesson, we saw that every XML file must have a root and we mentioned that you could call the XmlDocument.DocumentElement property to access it. This property is of type XmlElement and, to access it, you can declare an XmlElement variable and assign it this property. Here is an example: using System; using System.IO; using System.Xml; namespace VideoCollection1 { class Program { static int Main(string[] args) { string strFilename = "Videos.xml"; XmlDocument xmlDoc = new XmlDocument(); if (File.Exists(strFilename)) { xmlDoc.Load(strFilename); XmlElement elm = xmlDoc.DocumentElement; Console.WriteLine("{0}", elm); } else Console.WriteLine("The file {0} could not be located", strFilename); Console.WriteLine(); return 0; } } } This would produce: System.Xml.XmlElement Press any key to continue . . . An XML element is represented in the XmlNodeType enumeration as the Element member. When using the Read() method of an XmlTextReader object, to find out if the item being read is an element, you can check whether the member of the current XmlNodeType is Element. Here is an example: using System; using System.IO; using System.Xml; namespace VideoCollection1 { class Program { static int Main(string[] args) { string strFilename = "Videos.xml"; XmlDocument xmlDoc = new XmlDocument(); if (File.Exists(strFilename)) { XmlTextReader rdrXml = new XmlTextReader(strFilename); do { switch (rdrXml.NodeType) { case XmlNodeType.Element: break; } }while (rdrXml.Read()); } else Console.WriteLine("The file {0} could not be located", strFilename); Console.WriteLine(); return 0; } } }
The name of an element is the string that represents the tag. For example, in <Director>, the word Director is the name of the element. An element must have at least a start-tag. All of the tags we have seen so far were created as elements. When creating your elements, remember to follow the rules we defined for names. The XmlElement class is equipped with the Name property that can be used to identify an existing element. Here is an example of accessing it: using System; using System.IO; using System.Xml; namespace VideoCollection1 { class Program { static int Main(string[] args) { string strFilename = "Videos.xml"; XmlDocument xmlDoc = new XmlDocument(); if (File.Exists(strFilename)) { xmlDoc.Load(strFilename); XmlElement elm = xmlDoc.DocumentElement; Console.WriteLine("{0}", elm.Name); } else Console.WriteLine("The file {0} could not be located", strFilename); Console.WriteLine(); return 0; } } } This would produce: Videos Press any key to continue . . . Notice that Videos is returned as the name of the root element of the file. If calling the Read() method of an XmlTextReader object to scan a file, when you get to an element, you can find out its Name identity by accessing it. Here is an example: using System; using System.IO; using System.Xml; namespace VideoCollection1 { class Program { static int Main(string[] args) { string strFilename = "Videos.xml"; XmlDocument xmlDoc = new XmlDocument(); if (File.Exists(strFilename)) { XmlTextReader rdrXml = new XmlTextReader(strFilename); do { switch (rdrXml.NodeType) { case XmlNodeType.Element: Console.WriteLine("{0}", rdrXml.Name); break; } }while (rdrXml.Read()); } else Console.WriteLine("The file {0} could not be located", strFilename); Console.WriteLine(); return 0; } } } This would produce: Videos Video Title Director Length Format Rating Video Title Director Length Format Rating Video Title Director Length Format Rating Press any key to continue . . .
The value of an element is the item displayed on the right side of the start-tag. It is also called the text of the element. In the case of <Director>Jonathan Lynn</Director>, the "Jonathan Lynn" string is the value of the Director element. To support the text or value of an element, the XmlElement class is equipped with the Value property. While the value of one element can be a number, the value of another element can be a date. Yet another element can use a regular string as its value. Consider the following example: <?xml version="1.0" encoding="utf-8" ?> <Employees> <Employee> <FullName>Lydia Thomason</FullName> <Salary>25.64</Salary> <DepartmentID>1</DepartmentID> </Employee> <Employee> <FullName>June Grath</FullName> <Salary>16.38</Salary> <DepartmentID>4</DepartmentID> </Employee> </Employees> Notice that the Salary elements contain numbers that look like currency values and the DepartmentID elements use an integer as value. If you are using an XmlTextReader object to scan a file, when the Read() method gets to an element, you can find out what its value is by accessing this property. Here is an example: using System; using System.IO; using System.Xml; namespace VideoCollection1 { class Program { static int Main(string[] args) { string strFilename = "Videos.xml"; XmlDocument xmlDoc = new XmlDocument(); if (File.Exists(strFilename)) { XmlTextReader rdrXml = new XmlTextReader(strFilename); do { switch (rdrXml.NodeType) { case XmlNodeType.Text: Console.WriteLine("{0}", rdrXml.Value); break; } }while (rdrXml.Read()); } else Console.WriteLine("The file {0} could not be located", strFilename); Console.WriteLine(); return 0; } } } This would produce: The Distinguished Gentleman Jonathan Lynn 112 Minutes DVD R Her Alibi Bruce Beresford 94 Mins DVD PG-13 Chalte Chalte Aziz Mirza 145 Mins DVD N/R Press any key to continue . . . The value or text of an element is an object of type XmlText.
An element may not have a value but only a name. Consider the following example: <?xml version="1.0" encoding="utf-8"?> <Videos> <Video> <Title>The Distinguished Gentleman</Title> <Director>Jonathan Lynn</Director> </Video> </Videos> In this case, the Video element doesn't have a value. It is called an empty element. When a tag is empty, the Value property of its XmlElement object would return an empty value. Consider the following code: using System; using System.IO; using System.Xml; namespace VideoCollection1 { class Program { static int Main(string[] args) { string strFilename = "Videos.xml"; XmlDocument xmlDoc = new XmlDocument(); if (File.Exists(strFilename)) { xmlDoc.Load(strFilename); XmlElement elm = xmlDoc.DocumentElement; Console.WriteLine("{0}", elm.Value); } else Console.WriteLine("The file {0} could not be located", strFilename); Console.WriteLine(); return 0; } } } This would produce: Press any key to continue . . . Because the Videos node doesn't have its own value, its Value property returns an empty string.
Besides these obvious types of values, you may want to display special characters as values of elements. Consider the following example: <?xml version="1.0" encoding="utf-8" ?> <Employees> <Employee> <FullName>Sylvie <Bellie> Aronson</FullName> <Salary>25.64</Salary> <DepartmentID>1</DepartmentID> </Employee> <Employee> <FullName>Bertrand Yamaguchi</FullName> <Salary>16.38</Salary> <DepartmentID>4</DepartmentID> </Employee> </Employees> If you try using this XML document, for example, if you try displaying it in a browser, you would, receive an error: |
The reason is that when the parser reaches the <FullName>Sylvie <Bellie> Aronson</FullName> line, it thinks that <Bellie> is a tag but then <Bellie> is not closed. The parser concludes that the document is not well-formed, that there is an error. For this reason, to display a special symbol as part of a value, you can use its character code. For example, the < (less than) character is represented with < and the > (greater than) symbol can be used with >. Therefore, the above code can be corrected as follows: <?xml version="1.0" encoding="utf-8" ?> <Employees> <Employee> <FullName>Sylvie <Bellie> Aronson</FullName> <Salary>25.64</Salary> <DepartmentID>1</DepartmentID> </Employee> <Employee> <FullName>Bertrand Yamaguchi</FullName> <Salary>16.38</Salary> <DepartmentID>4</DepartmentID> </Employee> </Employees> This would produce: |
Here is a list of other codes you can use for special characters:
There are still other codes to include special characters in an XML file.
|
|
||
Previous | Copyright © 2006-2016, FunctionX, Inc. | Next |
|