views:

1390

answers:

6

I'm searching a small Java based RSS/Feed Generator, something like the FeedCreator.class.php library, any suggestions?, thanks!

+2  A: 

How about jRSS? It looks promising -- supports generating RSS 2 and is relatively small.

John Millikin
I'll test it right away, thanks!
ramayac
+6  A: 

There's the Rome framework as well

https://rome.dev.java.net/

Does RSS and Atom

tim_yates
This is the one I ended up using, thanks!
ramayac
+2  A: 

I used an API a few years back called ROME. I thought it was a breeze to set up and get going with.

bpapa
+2  A: 

i used Informa with success. especially useful if you plan to support multiple verison of rss (0.9-2.0) reasonable sized library , well documented.

a quite complete list con be found at http://java-source.net/open-source/rss-rdf-tools

Andreas Petersson
A: 

I was searching for "java rss generator small" The problem is that ROME and Informa are not small. They have huge dependencies. It looks like it will end with writing such 100 line class by hands.

So what, 1M is nothing in this age of gigabytes. Why re-invent the wheel, and create headaches as you search for bugs that your code has when you can pick something that has been thru all that and does the job.
mP
A: 

ROME has 1 dependecy (JDom). That isn't exactly huge!

Nick Lothian