作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Netbeans IDe 7.0.1。我正在用 Java 测试一个程序,该程序使用 ROME 来解析 xml。
public class RSSNew {
public static void main(String[] args) throws Exception {
URL url = new URL("RSS URL");
XmlReader reader = null;
try {
reader = new XmlReader(url);
SyndFeed feed = new SyndFeedInput().build(reader); /* HERE */
}
finally {
if (reader != null)
reader.close();
}
}
}
错误是:
**cannot access org.jdom.Document
class file for org.jdom.Document not found
SyndFeed feed = new SyndFeedInput().build(reader);
Note: C:\Users\User PC\Documents\NetBeansProjects\RSS\src\rss\RSS.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
1 error**
您遇到过这样的错误吗?
提前致谢
附言。我在我的项目中添加了以下 jar 文件:
feed4j.jarrome-1.0.jarrome-1.0-javadoc.jar
最佳答案
我刚收到相同的错误消息 - 您还需要将 jdom.jar 添加到您的项目类路径中,它已被 rome 使用。你可以从这里得到它:http://www.jdom.org/dist/binary/
关于java - SyndFeedInput().build in Java : Cannot access org. 找不到 org.jdom.Document 的 jdom.Document 类文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8465251/
我想使用 SyndFeedInput 解析非标准 feed 4 - Fleetmatics Group plc (0001526160) (Issuer) <b>Filed:<
我正在使用 Netbeans IDe 7.0.1。我正在用 Java 测试一个程序,该程序使用 ROME 来解析 xml。 public class RSSNew { public
我是一名优秀的程序员,十分优秀!