用于 XML 处理的方便的 GWT 兼容库
内置的 XMLParser 对我来说有点太笨重了,有没有像 dom4j 或 JDOM 一样方便使用的 GWT 兼容的客户端 XML 处理库? 没有 Xpath、XSLT 支持,不需要映射到对象,只需简单的 DOM 操作。 我正在寻找一个纯Java解决方案,而不是一个JSNI包装的js库。
Built-in XMLParser is a bit too unwieldy for me to use, are there any GWT-compatible client XML processing libraries that are as convenient to use as dom4j or JDOM?
No Xpath, XSLT support, no mapping to objects is necessary, just plain DOM operations.
I'm looking for a pure Java solution, not for a JSNI wrapped js library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GWT 客户端只能运行可 x 编译为 JS 的代码:
http:// code.google.com/webtoolkit/doc/latest/RefJreEmulation.html
我很少使用这个库,但看起来还不错:
http://code.google.com/p/totoe/
如果您的操作在服务器上进行,那么今天您很幸运,因为您可以使用任何您想要的 Java 库。
GWT client side can only run code which is x-compilable to JS:
http://code.google.com/webtoolkit/doc/latest/RefJreEmulation.html
I used this lib very lightly, but seems ok:
http://code.google.com/p/totoe/
If your operations take place on the server, it's your lucky day as you can use whatever Java library you want.