如何在 gwt 中使用 rome 读取 rssFeed xml
使用罗马我创建了 rssFeed xml,现在我想读取该 xml,以便用户可以查看并且用户可以在谷歌等中查看 rss feed。
Using rome I created the rssFeed xml and now I want to read that xml so that user can view and user can view rss feed in google etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用GWT中的RPC功能首先将
.rss
文件发送到服务器,然后将其转换为您的需求并发送回客户端。您可以使用 Apache Common 的 Digester API 从.rss
服务器中的文件。You can use the RPC feature in GWT to first send the
.rss
file to the server, upon which, its converted into your requirements and sent back to the client. You can use Apache Common's Digester API to extract various information from the.rss
file in the Server.