本文介绍了使用摘要器解析xml属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



现在,当我使用摘要器解析xml属性时遇到问题.我能够解析节点文本内容,但无法解析属性值.


这是我的代码.

hi ,

Right now I''m facing problems while I parse attributes of an xml using digester. I''m able to parse node text content but I''m not able to parse attribute value.


here is My code.

Digester digester = new Digester();
  
digester.addObjectCreate("root/child",Child.class);
digester.addSetProperties("root/child","name","name");

digester.parse(new File("c:\\test.xml");



预先感谢.



Thanks in advance.

推荐答案


这篇关于使用摘要器解析xml属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-09 22:40