千家信息网

Android XML提要怎么实现

发表于:2024-12-12 作者:千家信息网编辑
千家信息网最后更新 2024年12月12日,本篇内容介绍了"Android XML提要怎么实现"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!通过
千家信息网最后更新 2024年12月12日Android XML提要怎么实现

本篇内容介绍了"Android XML提要怎么实现"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

通过允许日期和链接作为简单的对象被访问,同时将它们表示为较强类型的对象(de >java.util.Datede > 和 de >java.net.URLde >),它隐藏了一些内部状态。它是一个典型的 Value Object,因此它基于其内部状态实现了 de >equals()de > 和 de >hashCode()de >。它还实现了 de >Comparablede > 接口,因此您可以使用它进行排序(按日期)。在实践中,提要中的数据始终是有序的,因为没有必要再进行排序。

每个解析器实现都需要提供一个 URL 给 Androidster 提要,并使用它打开一个到 Androidster 站点的 HTTP 连接。这一常见行为自然是在 Java 代码中建模,我们使用了一个抽象基类,所示。

基本提要解析器类

java代码:

public abstract class BaseFeedParser implements FeedParser { // names of the XML tags static final String PUB_DATE = "pubDate"; static final String DESCRIPTION = "description"; static final String LINK = "link"; static final String TITLE = "title"; static final String ITEM = "item"; final URL feedUrl; protected BaseFeedParser(String feedUrl){ try { this.feedUrl = new URL(feedUrl); } catch (MalformedURLException e) { throw new RuntimeException(e); } } protected InputStream getInputStream() { try { return feedUrl.openConnection().getInputStream(); } catch (IOException e) { throw new RuntimeException(e); } } }

基类存储 de >feedUrlde > 并使用它打开了一个 de >java.io.InputStreamde >。如果出现任何差错,它会抛出一个 de >RuntimeExceptionde >,造成应用程序出现故障。基类还为标记的名称定义了一些简单的常量。显示了提要中的一些示例内容,以便于您理解这些标记的重要性。

示例 XML 提要

java代码:

  1. < ?xml version="1.0" encoding="UTF-8"? >

  2. < !-- generator="FeedCreator 1.7.2" -- >

  3. < rss version="2.0" >

  4. < channel >

  5. < title >android_news< /title >

  6. < description >android_news< /description >

  7. < link >< /link >

  8. < lastBuildDate >Sun, 19 Apr 2009 19:43:45 +0100< /lastBuildDate >

  9. < generator >FeedCreator 1.7.2< /generator >

  10. < item >

  11. < title >Samsung S8000 to Run Android, Play DivX, Take Over the World< /title >

  12. < link >< /link >

  13. < description >More details have emerged on the first Samsung handset

  14. to run Android. A yet-to-be announced phone called the S8000 is being

  15. reported ...< /description >

  16. < pubDate >Thu, 16 Apr 2009 07:18:51 +0100< /pubDate >

  17. < /item >

  18. < item >

  19. < title >Android Cupcake Update on the Horizon< /title >

  20. < link >< /link >

  21. < description >After months of discovery and hearsay, the Android

  22. build that we have all been waiting for is about to finally make it

  23. out ...< /description >

  24. < pubDate >Tue, 14 Apr 2009 04:13:21 +0100< /pubDate >

  25. < /item >

  26. < /channel >

  27. < /rss >

"Android XML提要怎么实现"的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注网站,小编将为大家输出更多高质量的实用文章!

0