⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rsstaghandler.java

📁 j2me is based on j2mepolish, client & server for mobile application. menu sample
💻 JAVA
字号:
//#condition polish.usePolishGui

/*
 * Created on 24-Apr-2007 at 19:20:28.
 * 
 * Copyright (c) 2007 Michael Koch / Enough Software
 *
 * This file is part of J2ME Polish.
 *
 * J2ME Polish is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * 
 * J2ME Polish is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with J2ME Polish; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 * 
 * Commercial licenses are also available, please
 * refer to the accompanying LICENSE.txt or visit
 * http://www.j2mepolish.org for details.
 */
package de.enough.polish.browser.rss;

import de.enough.polish.browser.Browser;
import de.enough.polish.browser.TagHandler;
import de.enough.polish.ui.Container;
import de.enough.polish.ui.Item;
import de.enough.polish.ui.StringItem;
import de.enough.polish.util.HashMap;
import de.enough.polish.xml.SimplePullParser;

public class RssTagHandler
	extends TagHandler
{
	private static final String TAG_CHANNEL = "channel";
	private static final String TAG_LINK = "link";
	private static final String TAG_LANGUAGE = "language";
	private static final String TAG_COPYRIGHT = "copyright";
	private static final String TAG_PUBDATE = "pubDate";
	private static final String TAG_GUID = "guid";
	private static final String TAG_IMAGE = "image";
	private static final String TAG_URL = "url";
	private static final String TAG_ITEM = "item";
	private static final String TAG_TITLE = "title";
	private static final String TAG_DESCRIPTION = "description";
	private static final String TAG_AUTHOR = "author";

	private static final String TAG_DIGG_DIGGCOUNT = "digg:diggCount";
	private static final String TAG_DIGG_USERNAME = "digg:username";
	private static final String TAG_DIGG_USERIMAGE = "digg:userimage";
	private static final String TAG_DIGG_CATEGORY = "digg:category";
	private static final String TAG_DIGG_COMMENTCOUNT = "digg:commentCount";

	private Browser browser;
	private boolean inChannelTag;
	private boolean inItemTag;
	private String title;
	private String description;

	/* (non-Javadoc)
	 * @see de.enough.polish.browser.TagHandler#register(de.enough.polish.browser.Browser)
	 */
	public void register(Browser browser)
	{
		this.browser = browser;

		browser.addTagHandler(TAG_CHANNEL, this);
		browser.addTagHandler(TAG_LINK, this);
		browser.addTagHandler(TAG_LANGUAGE, this);
		browser.addTagHandler(TAG_COPYRIGHT, this);
		browser.addTagHandler(TAG_PUBDATE, this);
		browser.addTagHandler(TAG_GUID, this);
		browser.addTagHandler(TAG_IMAGE, this);
		browser.addTagHandler(TAG_URL, this);
		browser.addTagHandler(TAG_ITEM, this);
		browser.addTagHandler(TAG_TITLE, this);
		browser.addTagHandler(TAG_DESCRIPTION, this);
		browser.addTagHandler(TAG_AUTHOR, this);

		browser.addTagHandler(TAG_DIGG_DIGGCOUNT, this);
		browser.addTagHandler(TAG_DIGG_USERNAME, this);
		browser.addTagHandler(TAG_DIGG_USERIMAGE, this);
		browser.addTagHandler(TAG_DIGG_CATEGORY, this);
		browser.addTagHandler(TAG_DIGG_COMMENTCOUNT, this);
	}
	
	/* (non-Javadoc)
	 * @see de.enough.polish.browser.TagHandler#handleTag(de.enough.polish.ui.Container, de.enough.polish.xml.SimplePullParser, java.lang.String, boolean, de.enough.polish.util.HashMap)
	 */
	public boolean handleTag(Container parentItem, SimplePullParser parser, String tagName, boolean opening, HashMap attributeMap)
	{
		if (TAG_CHANNEL.equals(tagName)) {
			this.inChannelTag = opening;
			return true;
		}

		if (this.inChannelTag) {
			if (TAG_ITEM.equals(tagName)) {
				this.inItemTag = opening;

				if (!opening && this.title != null && this.description != null) {
					addRssItem(this.title, this.description);
					this.title = null;
					this.description = null;
				}

				return true;
			}

			if (this.inItemTag) {
				if (TAG_TITLE.equals(tagName)) {
					if (opening) {
						parser.next();
						this.title = parser.getText();
					}

					return true;
				}

				if (TAG_DESCRIPTION.equals(tagName)) {
					if (opening) {
						parser.next();
						this.description = parser.getText();
					}

					return true;
				}
			}
		}

		// Ignore content of some tags.
		if (TAG_TITLE.equals(tagName)
			|| TAG_LINK.equals(tagName)
			|| TAG_DESCRIPTION.equals(tagName)
			|| TAG_LANGUAGE.equals(tagName)
			|| TAG_PUBDATE.equals(tagName)
			|| TAG_GUID.equals(tagName)
			|| TAG_URL.equals(tagName)
			|| TAG_DIGG_DIGGCOUNT.equals(tagName)
			|| TAG_DIGG_USERNAME.equals(tagName)
			|| TAG_DIGG_USERIMAGE.equals(tagName)
			|| TAG_DIGG_CATEGORY.equals(tagName)
			|| TAG_DIGG_COMMENTCOUNT.equals(tagName)) {
			if (opening) {
				parser.next();
			}
			return true;
		}

		return false;
	}

	protected void addRssItem(String title, String description)
	{
		//#style browserLink
		StringItem item = new StringItem(null, title, de.enough.polish.ui.StyleSheet.browserlinkStyle );
		item.setAppearanceMode(Item.HYPERLINK);
		this.browser.add(item);
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -