在我们项目开发中免不了有对日期时间的处理,但Java中关于日期时间的类太多了,这篇文章主要给大家介绍一下各种类的使用及我们项目中应该怎么选择,最后做一个工具类的封装。
一、Date、Calendar(老版日期时间类)
这是最原始的java
中关于日期时间处理的类
1. Date 的基本用法
import java.util.Date;
public class TestDate {
public static void main(String[] args) {
// 获取当前时间
Date date = new Date();
// 年份
System.out.println(date.getYear() + 1900);
// 月份
System.out.println(date.getMonth() + 1);
// 日期
System.out.println(date.getDate());
// 转换为本地时间
System.out.println(date.toLocaleString());
// 转换为 GMT 时区
System.out.println(date.toGMTString());
// 通过当前系统时间戳初始化Date
Date date1 = new Date(System.currentTimeMillis());
System.out.println(date1);
}
}
可以看到,我们在获取Date
对象的年和月时都还需要进行额外的相加操作,非常不方便,而且Date
类内部,对于大多数方法也已经废弃。
2. Calendar 的基本用法
Calendar
相比于Date
多了可以对时间运算的功能,也可以通过getTime
方法把Calendar
转化为Date
。
import java.util.Calendar;
import java.util.Date;
public class TestDate {
public static void main(String[] args) {
// 获取Calendar实例
Calendar cal = Calendar.getInstance();
// 获取年、月、日、时、分、秒
System.out.println(cal.get(Calendar.YEAR));
System.out.println(cal.get(Calendar.MONTH));
System.out.println(cal.get(Calendar.DAY_OF_MONTH));
System.out.println(cal.get(Calendar.HOUR_OF_DAY));
System.out.println(cal.get(Calendar.MINUTE));
System.out.println(cal.get(Calendar.SECOND));
// 把Calendar转化为Date
Date date = cal.getTime();
}
}
3. Date的格式化,DateFormat 及 SimpleDateFormat
1. DateFormat的使用
Date date = new Date();
// 处理日期转换
DateFormat dateFormat = DateFormat.getDateInstance();
System.out.println(dateFormat.format(date));
// 处理时间转换
DateFormat timeFormat = DateFormat.getTimeInstance();
System.out.println(timeFormat.format(date));
// 处理日期时间转换
DateFormat dateTimeFormat = DateFormat.getDateTimeInstance();
System.out.println(dateTimeFormat.format(date));
DateFormat
只可以处理固定的三种格式转换,一般我们是使用它的一个实现类SimpleDateFormat
。
2. SimpleDateFormat的使用
SimpleDateFormat
可以格式化为自己想要的日期时间格式,也是平常使用较多的格式化类,具体使用如下
import java.text.SimpleDateFormat;
import java.util.Date;
public class TestDate {
public static void main(String[] args) {
Date date = new Date();
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy年MM月dd日 HH小时mm分钟ss秒");
System.out.println(dateFormat.format(date));
}
}
二、LocalDateTime(Java8新版日期时间类)
1. 基本用法
import java.time.LocalDateTime;
public class App {
public static void main(String[] args) {
// 获取日期时间
LocalDateTime dateTime = LocalDateTime.now();
System.out.println(dateTime);
// 获取年、月、日、时、分、秒
System.out.println(dateTime.getYear());
System.out.println(dateTime.getMonthValue());
System.out.println(dateTime.getDayOfMonth());
System.out.println(dateTime.getHour());
System.out.println(dateTime.getMinute());
System.out.println(dateTime.getSecond());
// 自定义日期时间
LocalDateTime myDateTime = LocalDateTime.of(2023, 5, 1, 0, 0, 0);
System.out.println(myDateTime);
}
}
除了LocalDateTime
,还有LocalDate
和LocalTime
可以初始化单独的日期和时间。
2. LocalDateTime 格式化
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class App {
public static void main(String[] args) {
// 获取日期时间
LocalDateTime dateTime = LocalDateTime.now();
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy年MM月dd日 HH小时mm分ss秒");
System.out.println(dateTimeFormatter.format(dateTime));
}
}
LocalDateTime
是目前比较推荐使用的日期时间类。
三、日期时间工具类
一般我们项目中使用还有封装一个工具类,更方便我们的使用,这里我封装了一个,供大家参考使用
import org.apache.commons.lang3.time.DateFormatUtils;
import java.lang.management.ManagementFactory;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.time.*;
import java.util.Date;
/**
* 时间工具类
*/
public class DateUtils extends org.apache.commons.lang3.time.DateUtils
{
public static String YYYY = "yyyy";
public static String YYYY_MM = "yyyy-MM";
public static String YYYY_MM_DD = "yyyy-MM-dd";
public static String YYYYMMDDHHMMSS = "yyyyMMddHHmmss";
public static String YYYY_MM_DD_HH_MM_SS = "yyyy-MM-dd HH:mm:ss";
private static String[] parsePatterns = {
"yyyy-MM-dd", "yyyy-MM-dd HH:mm:ss", "yyyy-MM-dd HH:mm", "yyyy-MM",
"yyyy/MM/dd", "yyyy/MM/dd HH:mm:ss", "yyyy/MM/dd HH:mm", "yyyy/MM",
"yyyy.MM.dd", "yyyy.MM.dd HH:mm:ss", "yyyy.MM.dd HH:mm", "yyyy.MM"};
/**
* 获取当前Date型日期
*
* @return Date() 当前日期
*/
public static Date getNowDate()
{
return new Date();
}
/**
* 获取当前日期, 默认格式为yyyy-MM-dd
*
* @return String
*/
public static String getDate()
{
return dateTimeNow(YYYY_MM_DD);
}
public static final String getTime()
{
return dateTimeNow(YYYY_MM_DD_HH_MM_SS);
}
public static final String dateTimeNow()
{
return dateTimeNow(YYYYMMDDHHMMSS);
}
public static final String dateTimeNow(final String format)
{
return parseDateToStr(format, new Date());
}
public static final String dateTime(final Date date)
{
return parseDateToStr(YYYY_MM_DD, date);
}
public static final String parseDateToStr(final String format, final Date date)
{
return new SimpleDateFormat(format).format(date);
}
public static final Date dateTime(final String format, final String ts)
{
try
{
return new SimpleDateFormat(format).parse(ts);
}
catch (ParseException e)
{
throw new RuntimeException(e);
}
}
/**
* 日期路径 即年/月/日 如2018/08/08
*/
public static final String datePath()
{
Date now = new Date();
return DateFormatUtils.format(now, "yyyy/MM/dd");
}
/**
* 日期路径 即年/月/日 如20180808
*/
public static final String dateTime()
{
Date now = new Date();
return DateFormatUtils.format(now, "yyyyMMdd");
}
/**
* 日期型字符串转化为日期 格式
*/
public static Date parseDate(Object str)
{
if (str == null)
{
return null;
}
try
{
return parseDate(str.toString(), parsePatterns);
}
catch (ParseException e)
{
return null;
}
}
/**
* 获取服务器启动时间
*/
public static Date getServerStartDate()
{
long time = ManagementFactory.getRuntimeMXBean().getStartTime();
return new Date(time);
}
/**
* 计算时间差
*
* @param endDate 最后时间
* @param startTime 开始时间
* @return 时间差(天/小时/分钟)
*/
public static String timeDistance(Date endDate, Date startTime)
{
long nd = 1000 * 24 * 60 * 60;
long nh = 1000 * 60 * 60;
long nm = 1000 * 60;
// long ns = 1000;
// 获得两个时间的毫秒时间差异
long diff = endDate.getTime() - startTime.getTime();
// 计算差多少天
long day = diff / nd;
// 计算差多少小时
long hour = diff % nd / nh;
// 计算差多少分钟
long min = diff % nd % nh / nm;
// 计算差多少秒//输出结果
// long sec = diff % nd % nh % nm / ns;
return day + "天" + hour + "小时" + min + "分钟";
}
/**
* 增加 LocalDateTime ==> Date
*/
public static Date toDate(LocalDateTime temporalAccessor)
{
ZonedDateTime zdt = temporalAccessor.atZone(ZoneId.systemDefault());
return Date.from(zdt.toInstant());
}
/**
* 增加 LocalDate ==> Date
*/
public static Date toDate(LocalDate temporalAccessor)
{
LocalDateTime localDateTime = LocalDateTime.of(temporalAccessor, LocalTime.of(0, 0, 0));
ZonedDateTime zdt = localDateTime.atZone(ZoneId.systemDefault());
return Date.from(zdt.toInstant());
}
}
关于java中日期时间的使用就是这样,大家有什么问题可以评论区留言哦!