XML如何实现如下的函数
对于取得的根节点ELEMENT root;
如何实现以下的方法
public NodeList get(String[] tag,String[] arg){
……
}
比如get({"content""type"},{"""2"});
<content>
<type>2</type>
<resource>dddddd</resource>
</content>
<content>
<type>3</type>
<resource>eeeeee</resource>
</content>
------解决方案--------------------你确实木有说清楚
------解决方案--------------------
我明白,第一个参数是标签名,第二个是对应的value
返回相应的节点列表
------解决方案--------------------建一个Node类,里面包含标签名、属性、值、是否包含下一级、上一级,然后循环你的数组,将对应的值放进去