Processing RSS feeds in java

Problem:

Create a program that processes RSS feeds of the website LAU (lau.edu.lb). The links of RSS feeds are (http://www.lau.edu.lb/news-events/news/rss.xml). Don't forget to print the web stories' titles.

Output:

There are 10 web stories.
Education: a continuous process
Building an accessible campus
Stop underage marriage!
Architecture, Politics and Society
What are pharmacists to public health?
Going off script
For the love of science
The perfect bridge
The Arab world?s future diplomats
Roadmap to residency

Solution:

import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;

import org.w3c.dom.DOMException;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException;

public class RSSFeeds {
	public static void main(String[] args) {
		URL url = null;
		InputStream is = null;
		DocumentBuilderFactory dbf = null;
		DocumentBuilder db = null;
		Document doc = null;
		NodeList itemList;
		Node item;
		Element itemElt;
		
		StringBuilder sb;
		
		try {
			url = 
			new URL("http://www.lau.edu.lb/news-events/news/rss.xml");
			is = url.openStream();
			dbf = DocumentBuilderFactory.newInstance();
			db = dbf.newDocumentBuilder();
			doc = db.parse(is);
			
			itemList = doc.getElementsByTagName("item");
			sb = new StringBuilder();
			
			System.out.println("There are " + itemList.getLength() 
					+ " web stories." );
			
			for(int i=0; i < itemList.getLength(); i++) {
				item = itemList.item(i);
				
				if(item.getNodeType() == Node.ELEMENT_NODE) {
					itemElt = (Element) item;
					
					sb.append(
					itemElt.getElementsByTagName(
					"title").item(0).getTextContent() + "\n");
					
				}
				
			}
			
			System.out.println(sb);
		} catch (MalformedURLException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (DOMException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (ParserConfigurationException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (SAXException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}

}


2 comments :

  1. Thanks for making me this article. You have done a great job by sharing this content in here. Keep writing article like this.

    Angular Training in Chennaihennai
    Angular JS Training in Chennai

    ReplyDelete
  2. liposuction cost Korea's #1 Liposculpture Clinic. Lydian plastic surgery is the home of VIP patients. Celebrities, Influencers and Diplomats all know and trust Doctor An and Lydian plastic surgery clinic to provide detailed results.

    ReplyDelete

Follow Me

If you like our content, feel free to follow me to stay updated.

Subscribe

Enter your email address:

We hate spam as much as you do.

Upload Material

Got an exam, project, tutorial video, exercise, solutions, unsolved problem, question, solution manual? We are open to any coding material. Why not upload?

Upload

Copyright © 2012 - 2014 Java Problems  --  About  --  Attribution  --  Privacy Policy  --  Terms of Use  --  Contact