AndroidXML读写(三)

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

我们提供的服务有:成都网站制作、成都网站设计、微信公众号开发、网站优化、网站认证、磴口ssl等。为超过千家企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的磴口网站制作公司

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

基本提要解析器类

java代码:

 
 
  1. public abstract class BaseFeedParser implements FeedParser { 
  2. // names of the XML tags 
  3. static final String PUB_DATE = "pubDate"; 
  4. static final String DESCRIPTION = "description"; 
  5. static final String LINK = "link"; 
  6. static final String TITLE = "title"; 
  7. static final String ITEM = "item"; 
  8. final URL feedUrl; 
  9. protected BaseFeedParser(String feedUrl){ 
  10. try { 
  11. this.feedUrl = new URL(feedUrl); 
  12. } catch (MalformedURLException e) { 
  13. throw new RuntimeException(e); 
  14. protected InputStream getInputStream() { 
  15. try { 
  16. return feedUrl.openConnection().getInputStream(); 
  17. } catch (IOException e) { 
  18. 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 >

分享文章:AndroidXML读写(三)
URL标题:http://www.shufengxianlan.com/qtweb/news5/99905.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联