30

I am looking for libraries which can read RSS / ATOM feeds in my J2EE application (based on JBoss Seam).

Is Rome the only application there for reading feeds?

I am assuming the Seam RSS integration is only for generating RSS feeds and not for reading feeds.

Dan Lowe
  • 51,713
  • 20
  • 123
  • 112
Sam
  • 8,387
  • 19
  • 62
  • 97

6 Answers6

27

Have you had a look into the following list? http://java-source.net/open-source/rss-rdf-tools

Even though it has been mentioned several times, I would suggest using Rome as well.

Shiliang
  • 61
  • 1
  • 11
Nils Schmidt
  • 3,702
  • 6
  • 23
  • 28
8

Rome is a very mature, extremely well java-documented library and is still the de facto standard for this job.

Pascal Thivent
  • 562,542
  • 136
  • 1,062
  • 1,124
3

For Atom it is Apache Abdera: http://abdera.apache.org/

Jan Algermissen
  • 4,930
  • 4
  • 26
  • 39
  • I read somewhere that it is not possible to read RSS feeds via Abdera, since most of the feeds are only in RSS I would prefer a reader which is capable of reading both RSS / Atom feeds. I am looking for suggestions on what would someone do today, if they have to read ATOM / RSS feeds. I wouldn't prefer to use two different libraries for this purpose. – Sam May 03 '10 at 03:46
  • 2
    This project has been retired and should no longer be an option. – Sync Jan 25 '19 at 17:58
2

Yes. Eddie, and feed4j are other useful tools.

Ali Hashemi
  • 3,158
  • 3
  • 34
  • 48
0

For RSS feed ROME only not an option. We have lot like that namely Feed4j, abdera etc. But in these ROME only most widely used.

Samurai
  • 843
  • 6
  • 23
  • 44
0

Confere these links.

  1. AtomSphere
  2. Rsspect

These are both thread safe and very fast.

Konrad Viltersten
  • 36,151
  • 76
  • 250
  • 438
Bill
  • 1