org.joda.time 包不存在
这是我第一次尝试将第三方 *.jar 导入到我的项目中。我正在使用 Netbeans 7.0.1
除了通常的项目结构之外,以下内容位于 Source Packages
文件夹中:
Appointments
|
- MyDate.java
- Run.java
- joda-time-2.0.jar
- org
|
- ...
尝试导入 Joda Time 时给出: 包 org.joda.time 不存在
import org.joda.time.*;
我错过了什么?
This is the very first time I try to import a third party *.jar into my project. I'm using Netbeans 7.0.1
Besides the usual project structure the following are inside the Source Packages
folder:
Appointments
|
- MyDate.java
- Run.java
- joda-time-2.0.jar
- org
|
- ...
Attempt at importing the Joda Time gives me: package org.joda.time does not exist
import org.joda.time.*;
What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您必须通过项目库添加
joda-time-2.0.jar
。 (项目 + 库(单击鼠标右键)+ 添加 Jar/文件夹)You have to add
joda-time-2.0.jar
via project library. (Project + Libraries (Right mouse click) + Add Jar/Folder)您需要检查“joda-time-2.0.jar”是否已添加到您的类路径中。如果是,请检查它是否确实包含提到的包。
You need to check that "joda-time-2.0.jar" is added to your classpath. If it is then check that it really contains the package mentioned.
https://www.joda.org/joda-time/dependency-info。 html
Apache Maven
https://www.joda.org/joda-time/dependency-info.html
Apache Maven