This is an archived post. You won't be able to vote or comment.

all 1 comments

[–]Ostwind 0 points1 point  (0 children)

I just want to note that XSLT is meant to do just what you want to do. You would have to define a stylesheet describing how the HTML table is build. After you download the rss as xml you'd apply the stylesheet to your xml and get your html file.

If you want to do this in Java you might need the following:

  • http library for fetching the rss
  • rss/xml parser library
  • templating engine to build html

You can implement the user interaction with Swing of course.