请问下面这段xml如何用JDom创建?
谢谢!
<?xml version=\"1.0\" encoding=\"gb2312\"?>
<user>
<student>
<id>1</id>
<name>aa</name>
<score>100</score>
</student>
<student>
<id>2</id>
<name>bb</name>
<score>90</score>
</student>
</user>
------------------------------------
我现在不明白的就是有二个相同的student元素,
那是不是要用Element创建二个名为student的实例呢?
------------------------------------