Package org.exoplatform.services.rss.parser

Examples of org.exoplatform.services.rss.parser.IRSSChannel


   {
      URL url = new URL("http://www.lagazettedescommunes.com/RSS/generateRSS.asp");
      RSSDocument<DefaultRSSChannel, DefaultRSSItem> document = parser_.createDocument(url.toURI(), "utf-8");
      if (document != null)
      {
         IRSSChannel channel = document.getChannel();
         System.out.println("RSS Channel Title: " + channel.getTitle());
         System.out.println("RSS Channel Link: " + channel.getLink());
         System.out.println("RSS Channel Description: " + channel.getDesc());
      }
   }
View Full Code Here

TOP

Related Classes of org.exoplatform.services.rss.parser.IRSSChannel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.