2010-11-20 100 views

回答

0

不知道它是最好的,或者如果你在寻找什么,但快速搜索想出了这个:http://dev.abiss.gr/sarissa/

+0

谢谢你,但萨里沙长枪是ECMAScript的,我正在寻找一个GWT库。 – Federico 2010-11-22 14:10:14

3

我发现totoehttp://code.google.com/p/totoe/),一个GWT库基于萨里沙长枪(谢谢Diogo!)。它像一个魅力!

例如:

String xml = "..."; 
Document document = new XmlParser().parse(xml, "xmlns:acme=\"http://www.acme.org\""); 
Element root = document.getRoot(); 
List<Comment> comments = document.findByType(NodeType.COMMENT); 
List<Node> products = document.selectNodes("//acme:products"); 
相关问题