Once an XML document has been parsed by a DOM implementation, the data it represents is available as a hierarchy of nodes. Each node corresponds to a tagged element in the document. For example, given the following XML:
Component palette<?xml version="1.0" standalone='yes' ?>
<!DOCTYPE stockholdings SYSTEM "sth.dtd">
<StockList>
<Stock exchange=NASDAQ>
<name>Inprise (Borland)</name>
<price>15.375</price>
<symbol>INPR</symbol>
<shares>100</shares>
</Stock>
<Stock exchange=NYSE>
<name>Pfizer</name>
<price>42.75</price>
<symbol>PFE</symbol>
<shares type=preferred>25</shares>
</Stock>
</StockList>
TXMLDocument would generate a hierarchy of nodes as follows: The root of the hierarchy would be the StockList node. StockList would have two child nodes, which correspond to the two Stock tags. Each of these two child nodes would have four child nodes of its own (name,
price, symbol, and shares). Those four child nodes would act as leaf nodes. The text they contain would appear as the value of each of the leaf nodes.
Note: This division into nodes differs slightly from the way a DOM implementation generates nodes for an XML document. In particular, a DOM parser treats all tagged elements as internal nodes. Additional nodes (of type text node) would be created for the values of the name, price, symbol, and shares nodes. These text nodes would then appear as the children of the name, price, symbol, and
shares nodes.
Each node is accessed through an IXMLNode interface, starting with the root node, which is the value of the XML document component抯
DocumentElement property.
Working with a node抯 value
Given an IXMLNode interface, you can check whether it represents an internal node or a leaf node by checking the IsTextElement property.
If it represents a leaf node, you can read or set its value using the Text property.
If it represents an internal node, you can access its child nodes using the ChildNodes property.
Thus, for example, using the XML document above, you can read the price of Inprise抯 stock as follows:
InpriseStock := XMLDocument1.DocumentElement.ChildNodes[0];
Price := InpriseStock.ChildNodes['price'].Text;
Working with a node抯 attributes
If the node includes any attributes, you can work with them using the Attributes property. You can read or change an attribute value by specifying an existing attribute name. You can add new attributes by specifying a new attribute name when you set the Attributes property:
InpriseStock := XMLDocument1.DocumentElement.ChildNodes[0];
InpriseStock.ChildNodes['shares'].Attributes['type'] := 'common';
Adding and deleting child nodes
You can add child nodes using the AddChild method. AddChild creates new nodes that correspond to tagged elements in the XML document. Such nodes are called element nodes.
To create a new element node, specify the name that appears in the new tag and, optionally, the position where the new node should appear. For example, the following code adds a new stock listing to the document above:
var
NewStock: IXMLNode;
ValueNode: IXMLNode;
begin
NewStock := XMLDocument1.DocumentElement.AddChild('stock');
NewStock.Attributes['exchange'] := 'NASDAQ';
ValueNode := NewStock.AddChild('name');
ValueNode.Text := 'Cisco Systems'
ValueNode := NewStock.AddChild('price');
ValueNode.Text := '62.375';
ValueNode := NewStock.AddChild('symbol');
ValueNode.Text := 'CSCO';
ValueNode := NewStock.AddChild('shares');
ValueNode.Text := '25';
end;
An overloaded version of AddChild lets you specify the namespace in which the tag name is defined.
You can delete child nodes using the methods of the ChildNodes property. ChildNodes is an IXMLNodeList interface, which manages the children of a node. You can use its ~JMP Delete~!Alink(ixmlnodelist_delete,1,TopicNotFound,main) JMP~> method to delete a single child node that is identified by position or by name. For example, the following code deletes the last stock listed in the document above:
StockList := XMLDocument1.DocumentElement;
StockList.ChildNodes.Delete(StockList.ChildNodes.Count - 1);
博客介绍了XML文档经DOM解析后,数据以节点层次结构呈现。阐述了通过IXMLNode接口访问节点,包括判断节点类型、操作节点值和属性。还说明了添加和删除子节点的方法,如用AddChild添加、ChildNodes.Delete删除。
85

被折叠的 条评论
为什么被折叠?



