本文介绍了Java Joda Time - 下载并安装 - 一步一步的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我无法让Joda Time安装和工作。
I've had trouble getting Joda Time to install and work.
大多数指令都假设有一定的知识。
Most of the instructions around assume a certain amount of knowledge.
有人可以假设我一无所知并指导我,一步一步地,把Joda Time压缩文件放在哪里,我提取它吗?如何使用eclipse正确添加它以及如何将其导入类文件。
Can someone please assume I know nothing and guide me through, step by step, where to put the Joda Time zip file, do I extract it? How to add it properly using eclipse and how to import it into a class file.
非常感谢! :)
推荐答案
- 在eclipse中创建java项目
- 下载最新的
.tar.gz
文件,并提取其内容 - 在Eclipse中查找包浏览器中的项目,然后右键单击它然后调用它
新建 - >文件夹 - > libs
- 将joda-time-2.1.jar复制/拖放到新创建的libs文件夹中
- 右键单击你的再次项目(在包资源管理器中)然后
属性 - > Java构建路径 - >图书馆 - >添加罐子 - > joda-time-2.1.jar
-
现在您可以使用以下代码进行测试:
- Create your java project in eclipse
- Download the latest JodaTime
.tar.gz
file, and extract its contents - In Eclipse look for your project at package explorer and right click on it then call it
New -> Folder -> libs
- Copy/Drag joda-time-2.1.jar into the new created libs folder
- Right click on your project again (in package explorer) then
Properties -> Java Build Path -> Libraries -> Add Jars -> joda-time-2.1.jar
Now you can test with this code :
DateTime test = new DateTime();
if代码编译确定你很高兴
if code compiled ok you are good to go
这篇关于Java Joda Time - 下载并安装 - 一步一步的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!