消息基本上是相当直观的。通过允许日期和链接作为简单的对象被访问,同时将它们表示为较强类型的对象(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代码:
- 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代码:
- < ?xml version="1.0" encoding="UTF-8"? >
- < !-- generator="FeedCreator 1.7.2" -- >
- < rss version="2.0" >
- < channel >
- < title >android_news< /title >
- < description >android_news< /description >
- < link >< /link >
- < lastBuildDate >Sun, 19 Apr 2009 19:43:45 +0100< /lastBuildDate >
- < generator >FeedCreator 1.7.2< /generator >
- < item >
- < title >Samsung S8000 to Run Android, Play DivX, Take Over the World< /title >
- < link >< /link >
- < description >More details have emerged on the first Samsung handset
- to run Android. A yet-to-be announced phone called the S8000 is being
- reported ...< /description >
- < pubDate >Thu, 16 Apr 2009 07:18:51 +0100< /pubDate >
- < /item >
- < item >
- < title >Android Cupcake Update on the Horizon< /title >
- < link >< /link >
- < description >After months of discovery and hearsay, the Android
- build that we have all been waiting for is about to finally make it
- out ...< /description >
- < pubDate >Tue, 14 Apr 2009 04:13:21 +0100< /pubDate >
- < /item >
- < /channel >
- < /rss >
分享文章:AndroidXML读写(三)
URL标题:http://www.shufengxianlan.com/qtweb/news5/99905.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联