如何在黑莓中解析xml文档?
如何在 Blackberry 中解析 xml 文件?我可以有链接或示例代码或教程吗?
How can I parse a xml file in Blackberry? Can I have a link or sample code or tutorial?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用 SAX 来处理来自 Web api 的 XML 响应,它对我来说效果很好。查看:http://developerlife.com/tutorials/?p=28
到底是什么你想用XML来完成吗?
I've used SAX to process XML responses from a web api and it worked well for me. Check out: http://developerlife.com/tutorials/?p=28
What exactly are you trying to accomplish with XML?
您应该有一个接口来实现侦听器,以便在解析结束后通知您的 UI 线程。
使用 MediaFeedListner 实现您的类,然后覆盖 mediaItemParsed(Vector mObject) 和异常(java.io.IOException ioe) 方法。
mediaItemParsed() 方法将具有通知 UI 线程并执行所需操作的逻辑。
这是 XML 解析器代码。
完成了。
You should have a interface to implement the listener in order to notify your UI thread once parsing is over.
implement your class with MediaFeedListner and then override the mediaItemParsed(Vector mObject) and exception(java.io.IOException ioe) methoods.
mediaItemParsed() method will have the logic for notifying the UI thread and perform required operations.
Here is the XML parser code.
Its done.