I am trying to read rss. I copied the jar file to the libs folder and I added the jar file to the eclipse project as a library. In order and export, I checked my jar file.
Now I'm trying to use the rss reader provided by rome
import com.sun.syndication.feed.synd.SyndEntry;
import com.sun.syndication.feed.synd.SyndFeed;
import com.sun.syndication.io.SyndFeedInput;
import com.sun.syndication.io.XmlReader;
URL url = new URL("http://myUrlGoesHere");
XmlReader reader = new XmlReader(url);
SyndFeed feed = new SyndFeedInput().build(reader);
The following error appears on the last line: The type org.jdom.Document cannot be resolved. This indirectly refers to the required .class file
What does it mean? What is the solution? * Error importing *
source
share