Hi BB开发商 我在使用OMM对Xml数据进行分类时有问题。 xml数据格式是:
<stimulus name="Question" type="0">
<card>
<no>1</no>
<text><![CDATA[What is your primary goal, challenge or problem?]]></text>
</card>-----------------------
<stimulus name="Noun" type="0">
<card>
<no>12</no>
<text><![CDATA[Evaluation Criteria]]></text>
</card>
以下代码表用于对数据进行分类。
NodeList nl = element.getElementsByTagName("stimulus");
if (nl != null && nl.getLength() > 0) {
for (int i = 0; i < nl.getLength(); i++) {
Element ele = (Element) nl.item(i);
Data card = getQuestions(ele);
dataList.addElement(card);
}
}
当我通过使用根标“stimulus”来复制数据时,我没有按顺序获得数据。 我需要按顺序对数据进行分类。 我在哪里犯错误?