Questions tagged [rome]

ROME is a set of RSS and Atom Utilities for Java that is open source under the Apache 2.0 license. ROME makes it easy to work in Java with most syndication formats.

ROME is a set of RSS and Atom Utilities for Java that is open source under the Apache 2.0 license. ROME makes it easy to work in Java with most syndication formats.

ROME includes a set of parsers and generators for the various flavors of syndication feeds, as well as converters to convert from one format to another. The parsers can give you back Java objects that are either specific for the format you want to work with, or a generic normalized SyndFeed class that lets you work on with the data without bothering about the incoming or outgoing feed type.

141 questions
0
votes
1 answer

Rome RSS does not parse enclosures

I try to create a rss Feed with Rome which has enclosures (for a podcast). So I create an entry with SyndEntry entry = new SyndEntryImpl(); After I set the basic information of the entry (like Title and Link), I want to set an enclosure with the…
Tyde
  • 303
  • 2
  • 11
0
votes
1 answer

Using ROME to search RSS feeds

I'm using ROME to read and combine RSS feeds (caching is done with EhCache) in a Java environment. Is there functionality built in to the Rome API that allows you to search the contents of a feed (or a combination of different feeds) and then…
davek
  • 22,499
  • 9
  • 75
  • 95
0
votes
1 answer

Why won't my IDE recognize this type that I believe I have correctly imported in a JSP?

This is driving me mad, and I've already sought previous answers here and here, to no avail so far. I am trying to follow this tutorial, which uses the Rome library for RSS feeds to output feed entries to a JSP using a servlet. I'm using Eclipse,…
in_flight
  • 263
  • 1
  • 10
0
votes
1 answer

JDOM exception Spring MVC

I'm trying to create RSS feeds for my web site and I'm using the rome 1.0 library. When I run my project I get the following: org.springframework.web.util.NestedServletException: Handler processing failed; nested exception is…
Nick Robertson
  • 1,047
  • 4
  • 18
  • 41
-1
votes
2 answers

Extracting atom feeds from URL sets

I have a huge list of URL's and my task is to feed them to a java code which should spit out the atom contents. Is there an API library or how can I access them?I tried the below code but it does not show any output. I don't know what went…
Rose
  • 61
  • 10
-1
votes
1 answer

Difficulty parsing rss feed for Android project

I'm trying to create an RSS feed parsing app, and I am new to android programming. I currently have a Main Activity, which prompts the user to enter an rss URL, and the maxRows of the rss feed requested. I'm using the ROME library for RSS feed…
gratsby
  • 3,107
  • 4
  • 20
  • 20
1 2 3
9
10