如何在 Intellij 中设置我的项目以使用ROME library
读取 a RSS Feed
?
到目前为止,我已经开发了以下内容:
import com.sun.syndication.feed.synd.SyndFeed;
import com.sun.syndication.io.SyndFeedInput;
import com.sun.syndication.io.XmlReader;
import java.net.URL;
public class ReadRSS {
public static void main(String[] args) {
String urlString = "http://news.ycombinator.com/"
boolean ok = false;
if (args.length==1) {
try {
URL feedUrl = new URL(urlString);
SyndFeedInput input = new SyndFeedInput();
SyndFeed feed = input.build(new XmlReader(feedUrl));
System.out.println(feed);
ok = true;
}
catch (Exception ex) {
ex.printStackTrace();
System.out.println("ERROR: "+ex.getMessage());
}
}
if (!ok) {
System.out.println();
System.out.println("FeedReader reads and prints any RSS/Atom feed type.");
System.out.println("The first parameter must be the URL of the feed to read.");
System.out.println();
}
}
}
但是,我在运行我的代码时遇到了多个错误,主要是变体:
.. java:package com.sun.syndication.feed.synd 不存在..
如何将包导入Intellij
?设法在我的项目结构中导入这个我添加的 jar。
但是下一个问题是:我无法访问 org.jdom.Document - 尽管我已经在我的项目结构中安装了 jdom。我得到的错误是
错误:(16, 38) java: cannot access org.jdom.Document class file for org.jdom.Document not found
我该如何解决这个问题?