Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 jdom 2.0.5 库,我已经完成了导入它和配置构建路径的步骤,但是当我尝试导入库时,我收到一条错误消息,提示“无法解析导入”
“导入无法解决”
意味着您在导入指令的某个地方有拼写错误,或者您没有正确配置构建路径。如果你有,那么在你的代码中使用 jdom 类之后,使用Ctrl-Shift+o. 如果您还没有通过以下方法之一正确配置您的类路径:
Ctrl-Shift+o
下载 jdom2 jar 并将它们保存在某个地方。按照此处所述配置您的构建路径。
将您的项目转换为maven项目并在pom.xml文件中添加以下依赖项:
<dependency> <groupId>org.jdom</groupId> <artifactId>jdom2</artifactId> <version>2.0.5</version> </dependency>