How to create RSS feed in Java?

How to efficiently read RSS feed in JAVA?

  • I have written code to read a remote RSS feed to parse it: URL url = new URL(urlStr); HttpURLConnection hs = (HttpURLConnection)url.openConnection(); InputStream is = hs.getInputStream(); DocumentBuilder db = DocumentBuilderFactory.newInstance().new… Document doc = db.parse(is); And then I iterate over the items... however... when loading a large feed, this hangs for a long time as it loads... are there any suggestions as to a simpler or more efficient method to do this? I am not building an RSS reader... i just need to get to an RSS's XML to retieve links from it.

  • Answer:

    this may seem incredibly wrong but it is not pick up your phone go to menu enter messages go to rss feeds add the rss feeds u want and your done

quiksilv... at Yahoo! Answers Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.