org.joda.time 包不存在

发布于 2024-12-11 10:51:53 字数 369 浏览 1 评论 0原文

这是我第一次尝试将第三方 *.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 技术交流群。

扫码二维码加入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)

GRAY°灰色天空 2024-12-18 10:51:53

您需要检查“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.

终陌 2024-12-18 10:51:53

https://www.joda.org/joda-time/dependency-info。 html

Apache Maven

<dependency>
  <groupId>joda-time</groupId>
  <artifactId>joda-time</artifactId>
  <version>2.10.13</version>
</dependency>

https://www.joda.org/joda-time/dependency-info.html

Apache Maven

<dependency>
  <groupId>joda-time</groupId>
  <artifactId>joda-time</artifactId>
  <version>2.10.13</version>
</dependency>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文