0

I am trying to use Rome RSS Reader with Eclipse.

I have used BuildPath and added

modules-0.3.2.jar
modules-0.3.2-javadoc.jar
modules-0.3.2-sources.jar
rome-1.0.jar
rome-modules-1.0.jar



import java.net.URL;
import java.io.InputStreamReader;
import com.rometools.rome.feed.synd.SyndFeed;
import com.rometools.rome.io.SyndFeedInput;
import com.rometools.rome.io.XmlReader;

The import com.rometools cannot be resolved.

I have found this link

Java - Rome rss reader?

I have download JDom.

Which of the the Jar files do I add to the Build Path? or is it better to add them using the 'Add External Class Folder'?

Please can someone guide me to what the problem is?

I dont know of any Rome forums which may be able to assist.

Thanks

Community
  • 1
  • 1
Mesogi
  • 629
  • 1
  • 5
  • 11

1 Answers1

0

Your Rome version is quite old. The package names have changed since version 1.0. The imports in your code are for 1.5.0 or newer. Try with the following libraries in Eclipse project's build path:

janih
  • 2,214
  • 2
  • 18
  • 24