1.需要 jdom.jar 和 rome.jar 这两个包。
2.创建一个项目,web.xml的内容如下:
3.创建一个index.jsp 内容如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Sina News</title>
</head>
<body>
</p><%
</p></p>java.util.Properties systemSettings = System.getProperties();
</p></p>systemSettings.put("http.proxyHost", "mywebcache.com");
</p></p>systemSettings.put("http.proxyPort", "8080");
</p></p>System.setProperties(systemSettings);
</p></p>String urlStr = "http://rss.sina.com.cn/news/marquee/ddt.xml";
</p></p>java.net.URLConnection feedUrl = new java.net.URL(urlStr).openConnection();
</p></p>feedUrl.setRequestProperty("User-Agent",
</p></p></p></p>"Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)");
</p></p>com.sun.syndication.io.SyndFeedInput input = new com.sun.syndication.io.SyndFeedInput();
</p></p>com.sun.syndication.feed.synd.SyndFeed feed = input.build(new com.sun.syndication.io.XmlReader(feedUrl));
</p>%>
</p><div align="center">
</p></p><h1><%=feed.getTitle()%></h1>
</p></p><table border=1 cellpadding=3 width="700">
</p></p></p><tr>
</p></p></p></p><th>Number</th>
</p></p></p></p><th>Title</th>
</p></p></p></p><th>Time www.VeVB.COm</th>
</p></p></p></p><th>Content</th>
</p></p></p></tr>
</p></p></p><%
</p></p></p></p>java.util.List list = feed.getEntries();
</p></p></p></p>for (int i = 0; i < list.size(); i++) {
</p></p></p></p></p>com.sun.syndication.feed.synd.SyndEntry entry = (com.sun.syndication.feed.synd.SyndEntry) list.get(i);
</p></p></p></p>%>
</p></p></p><tr>
</p></p></p></p><td><%=i + 1%></td>
</p></p></p></p><td><a href="<%=entry.getLink()%>"><%=entry.getTitle()%></a></td>
</p></p></p></p><td><%=entry.getPublishedDate()%></td>
</p></p></p></p><td><%=entry.getDescription().getValue() %></td>
</p></p></p></tr>
</p></p></p><%
</p></p></p></p>}
</p></p></p>%>
</p></p></table>
</p></div>
</p><br>
</body>
</html>
新闻热点
疑难解答