M
mill666
Unregistered / Unconfirmed
GUEST, unregistred user!
有一个xml文件,节点深度有3个层次,我用 DOM模式去读取这个文件,然后在 treeview里面显示:节点结构如下:
<books text="Books">
<book>
<title>Mastering Delphi 6</title>
<author>Cantu</author>
</book>
<book>
<title>Delphi Developer's Handbook</title>
<author>Cantu</author>
<author>Gooch</author>
<hell>
<book>1</book>
<gg>大富翁</gg>
</hell>
</book>
</books>
如果我要取到“大富翁”这三个字,应当怎么写程序??
我用Mastering Delphi 6里面的例子,在treeview 里面可以显示出第三层次,但是我想取得“大富翁”这三个字,却不知道怎么写了。
I am a newbie on xml.
<books text="Books">
<book>
<title>Mastering Delphi 6</title>
<author>Cantu</author>
</book>
<book>
<title>Delphi Developer's Handbook</title>
<author>Cantu</author>
<author>Gooch</author>
<hell>
<book>1</book>
<gg>大富翁</gg>
</hell>
</book>
</books>
如果我要取到“大富翁”这三个字,应当怎么写程序??
我用Mastering Delphi 6里面的例子,在treeview 里面可以显示出第三层次,但是我想取得“大富翁”这三个字,却不知道怎么写了。
I am a newbie on xml.