`

java 读取新浪rss类

阅读更多

HttpClient httpClient = HttpClientFactory.createNewHttpClient();
  GetAccess get = new GetAccess(httpClient);
  String uri = "http://rss.sina.com.cn/tech/rollnews.xml";
  HttpResponse response = get.doGet(uri);
  String s = HttpUtil.getHtmlInfoSimple(response);
//  System.out.println(s);
  
  SAXReader reader = new SAXReader();
  reader.setEncoding("UTF-8");
  Document document = reader.read(new StringReader(s));
  
  XMLHelper xmlHelper = new XMLHelper(document);
  List<Element> itemList = xmlHelper.getNodeList("//channel/item");
  for (Element item : itemList) {
   Element titleElement = item.element("title");
   Element linkElement = item.element("link");
   System.out.println(titleElement.getTextTrim());
   System.out.println(linkElement.getTextTrim());
  }

 

 

log4j:WARN No appenders could be found for logger (org.apache.http.impl.conn.SingleClientConnManager).
log4j:WARN Please initialize the log4j system properly.
UTF-8
tempsd4519182130150798846.jtmp 编码为: UTF-8
零售平台JustFabulous融资3300万美元
http://go.rss.sina.com.cn/redirect.php?url=http://tech.sina.com.cn/i/2011-09-21/21346094244.shtml
Netflix与探索频道母公司续签两年内容授权合同
http://go.rss.sina.com.cn/redirect.php?url=http://tech.sina.com.cn/i/2011-09-21/21336094243.shtml
美股评论:让追踪股拯救雅虎
http://go.rss.sina.com.cn/redirect.php?url=http://tech.sina.com.cn/i/2011-09-21/21246094230.shtml
广告技术公司Adchemy获微软等6100万美元投资
http://go.rss.sina.com.cn/redirect.php?url=http://tech.sina.com.cn/it/2011-09-21/20466094198.shtml
派杰将携程网目标股价下调至41美元
http://go.rss.sina.com.cn/redirect.php?url=http://tech.sina.com.cn/i/2011-09-21/20446094197.shtml
玛萨玛索CEO孙弘微访谈:差异化发展是电商趋势
http://go.rss.sina.com.cn/redirect.php?url=http://tech.sina.com.cn/i/2011-09-21/20006094142.shtml
德银维持百度股票买入评级 目标股价190美元
http://go.rss.sina.com.cn/redirect.php?url=http://tech.sina.com.cn/i/2011-09-21/19536094124.shtml
传6家银行参与如家2.5亿美元贷款项目
http://go.rss.sina.com.cn/redirect.php?url=http://tech.sina.com.cn/i/2011-09-21/19526094123.shtml
蓝汛通信调整董事会成员任命新独董
http://go.rss.sina.com.cn/redirect.php?url=http://tech.sina.com.cn/t/2011-09-21/19286094082.shtml
大摩授予凤凰新媒体股票增持评级
http://go.rss.sina.com.cn/redirect.php?url=http://tech.sina.com.cn/i/2011-09-21/18366094004.shtml
大摩授予网易股票增持评级
http://go.rss.sina.com.cn/redirect.php?url=http://tech.sina.com.cn/i/2011-09-21/18366094003.shtml
广东出现首名通过微博投案自首者
http://go.rss.sina.com.cn/redirect.php?url=http://tech.sina.com.cn/i/2011-09-21/18256093993.shtml
天宫一号将突破空间对接技术
http://go.rss.sina.com.cn/redirect.php?url=http://tech.sina.com.cn/d/2011-09-21/18216093988.shtml
每日卫星照:芬兰奥兰群岛(图)
http://go.rss.sina.com.cn/redirect.php?url=http://tech.sina.com.cn/d/2011-09-21/18126093961.shtml
麒麟就侵权畅游《天龙八部》事件道歉
http://go.rss.sina.com.cn/redirect.php?url=http://tech.sina.com.cn/i/2011-09-21/18056093948.shtml

1
0
分享到:
评论
1 楼 macrotea 2011-09-25  
不错,受教了

相关推荐

Global site tag (gtag.js) - Google Analytics