01: /*
02: * This program is free software; you can redistribute it and/or modify
03: * it under the terms of the GNU General Public License as published by
04: * the Free Software Foundation; either version 2 of the License, or
05: * (at your option) any later version.
06: *
07: * This program is distributed in the hope that it will be useful,
08: * but WITHOUT ANY WARRANTY; without even the implied warranty of
09: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10: * GNU Library General Public License for more details.
11: *
12: * You should have received a copy of the GNU General Public License
13: * along with this program; if not, write to the Free Software
14: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15: */
16: package web.rss;
17:
18: import java.io.Reader;
19:
20: import org.apache.commons.digester.Digester;
21:
22: /**
23: * RSSµÄ½âÎöÆ÷
24: * @author Winter Lau
25: */
26: public class _RSSHunter extends RssHunter {
27:
28: /* (non-Javadoc)
29: * @see web.rss.RssHunter#parse(java.lang.String)
30: */
31: protected Channel parse(Reader content) throws Exception {
32: Digester dig = getDigester();
33: dig.addBeanPropertySetter("rss/channel/title", "title");
34: dig.addBeanPropertySetter("rss/channel/link", "link");
35: dig.addBeanPropertySetter("rss/channel/description",
36: "description");
37: dig.addObjectCreate("rss/channel/item", Item.class);
38: dig.addSetNext("rss/channel/item", "addItem");
39: dig.addBeanPropertySetter("rss/channel/item/title", "title");
40: dig.addBeanPropertySetter("rss/channel/item/link", "link");
41: dig.addBeanPropertySetter("rss/channel/item/description",
42: "description");
43:
44: return (Channel) dig.parse(content);
45: }
46:
47: }
|