发布网友 发布时间:2022-04-24 08:41
共4个回答
热心网友 时间:2023-10-09 04:30
虽然网上有什么date4j,但是jar太纠结了,先给出源码,可以继承到自己的util包中,作为一个资深程序员,我相信都有不少好的util工具类,我也希望经过此次分享,能带动技术大牛们能分享出自己的好用的工具类。
接下来再来看看如何使用:
获取当前系统时间:DateTime.now(); 返回的是一个DateTime对象。
一个DateTime对象可以转换成我们需要的各种日期格式,
例如:java.util.date
DateTime.now().toDate();
大家可能也觉得这个写法还没有直接new Date();来得快对不对。
那么有很多情况是一个字符串,需要转换成java.util.Date对象,我们该怎么做呢?
new DateTime("2014-10-29").toDate();
当然也可以是这样的
new DateTime("2014-10-29 15:19:23").toDate();
这里的只是基础用法,还有一些情况是将java.util.Date转换成字符串格式的
可能大家一般会用SimpleDateFormat,但是这个太费事了,我们看看简单的办法。
new DateTime(new Date()).toDateString();
返回的是 2014-10-29 这种格式的字符串
new DateTime(new Date()).toDateTimeString();
返回的是2014-10-29 15:23:23 这种格式的字符串
如果我们需要类似 2014年10月29日 或 2014年10月29日 15时23分34秒 这种格式的怎么办呢
new DateTime(new Date()).toDateTimeString("yyyy年MM月dd日");
new DateTime(new Date()).toDateTimeString("yyyy年MM月dd日 hh时mm分ss秒");
这样就可以了!
来自:http://blog.csdn.net/yakson/article/details/40586639
热心网友 时间:2023-10-09 04:30
1、java.util.Calendar c = Calendar.getInstance();
int year = c.get(Calendar.YEAR);
int month = c.get(Calendar.MONTH) + 1; //国外从0月开始,11月结束
int date = c.get(Calendar.DATE);
int hh = c.get(Calendar.HOUR_OF_DAY); //24小时制
int mm = c.get(Calendar.MINUTE);
int ss = c.get(Calendar.SECOND); //秒
2、java.util.Date date = new Date(); //当前日期时间
int yy = date.getYear();
int hh = date.getHours();
热心网友 时间:2023-10-09 04:31
1、java.util.Calendar c = Calendar.getInstance();
int year = c.get(Calendar.YEAR);
int month = c.get(Calendar.MONTH) + 1; //国外从0月开始,11月结束
int date = c.get(Calendar.DATE);
int hh = c.get(Calendar.HOUR_OF_DAY); //24小时制
int mm = c.get(Calendar.MINUTE);
int ss = c.get(Calendar.SECOND); //秒
2、java.util.Date date = new Date(); //当前日期时间
int yy = date.getYear();
int hh = date.getHours();
……
热心网友 时间:2023-10-09 04:31
java本身没有DateTime,而有java.util.Date这个是JDK/JRE自身的。。。。