Java中的时间日期类

Java中的时间类型,也算是我们开发过程中很常用的了。几乎上没有不和时间去打交道的。

在学习其他技术的时候,刚好也用到了一个时间类型。

这里看一下时间类型转字符串类型。

Date转为指定格式的String类型

编写一个测试方法。获取当前系统时间,转换为指定格式的字符串。

@Test
public void demo() {
    // 获取当前系统时间
    Date date = new Date();
    // 转换成指定格式的字符串形式
    SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
    String nowTime = simpleDateFormat.format(date);
    System.out.println(date);
    System.out.println(nowTime);
}
输出:
Sat May 01 19:33:59 CST 2021
2021-05-01

ZonedDateTime转换为指定格式的字符串

ZonedDateTime dateTime = ZonedDateTime.now();
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
String format = dateTimeFormatter.format(dateTime);
System.out.println(dateTime);
System.out.println(format);
输出:
2021-05-30T12:30:52.186+08:00[Asia/Shanghai]
2021-05-30

抽取成为工具类

/**
 * 将 ZonedDateTime 转为 yyyy-MM-dd 的日期格式
 *
 * @param zonedDateTime ZonedDateTime
 * @return yyyy-MM-dd
 */
public static String getDate(ZonedDateTime zonedDateTime) {
    DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
    return dateTimeFormatter.format(zonedDateTime);
}

其他计算日期的工具类

/**
 * 计算两个日期之间的相差天数
 *
 * @param startDate 开始时间 日期格式:yyyy-MM-dd
 * @param endDate   结束时间 日期格式:yyyy-MM-dd
 * @return 天数
 */
public static long getDays(String startDate, String endDate) {
    try {
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
        Date startParse = simpleDateFormat.parse(startDate);
        Date endParse = simpleDateFormat.parse(endDate);
        Calendar calendar = Calendar.getInstance();
        calendar.setTime(startParse);
        long startMillis = calendar.getTimeInMillis();
        calendar.setTime(endParse);
        long endMillis = calendar.getTimeInMillis();
        Long time = endMillis - startMillis;
        long days = time / 86400000;
        return days;
    } catch (Exception e) {
        e.printStackTrace();
    }
    return 0;
}

/**
 * 根据距离1900年1月1日的天数,获取日期
 *
 * @param days 天数
 * @return String
 */
public static String getDate(Integer days) {
    Calendar calendar = new GregorianCalendar(1900, 0, -1);
    Date date = calendar.getTime();
    Date d = DateUtils.addDays(date, days);
    SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
    return simpleDateFormat.format(d);
}
上一篇:SpringBoot如何使用Slf4j日志与logback-spring.xml配置详解


下一篇:C# 四种九九乘法表