<Variables Name="" Date="2011/06/06 13:09:38">
<yo>http://www.teamliquid.net/video/streams/Competo</yo>
<name>Competo</name>
<word>434</word>
</Variables>
<Variables Name="" Date="2011/06/06 13:09:39">
<yo>http://www.teamliquid.net/video/streams/Rmdx</yo>
<name>Rmdx</name>
<word>66</word>
</Variables>
我希望将所有节点都放在一个标签下..不知道我会怎么做。
答案 0 :(得分:0)
最简单的方法是编辑xml文件。在文件开头添加<root>
,在结尾添加</root>
。
这里的想法是我们有另一个包含root的文件并包含真实文件。如果真实文件名为variables.xml
,那么根文件将包含:
<?xml version="1.0"?>
<!DOCTYPE staticinc [
<!ENTITY variables SYSTEM "variables.xml">
]>
<root>
<!-- include the non-well formed XML -->
&variables;
</root>