DateTimeFormatter用法


DateTimeFormatter的操作与使用--通俗易懂

DateTimeFormatter这个类它只提供了时间格式化的类型,就是按你指定的格式,或者按jdk默认的格式,需要进行调用的则是时间类本身来进行调用才能进行格式化

LocalDate、LocalTime 的api是有2个方法,分别是:parse()、format()方法,时间类型的转换可以调用这2个来进行日期时间类型的转换

E parse(CharSequence text)

E parse(CharSequence text, DateTimeFormatter formatter)

String format(DateTimeFormatter formatter)

1.字符串转成日期时间类型

private static void testStringT0LocalDate() {
        // String --> LocalDate
        LocalDate localDate = LocalDate.parse("2019-12-07");      
DateTimeFormatter pattern = DateTimeFormatter.ofPattern("yyyy年MM月dd日");       
System.out.println(LocalDate.parse("2019-10-09").format(pattern)); // String --> LocalTime LocalTime localTime = LocalTime.parse("07:43:53"); // String -->LocalDateTime DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss"); // 12小时      DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); // 24小时
        LocalDate localDate = LocalDate.parse("2019-12-07 07:43:53",formatter);
        System.out.println(localDate); System.out.println(localTime); System.out.println(localDate); 
}

2.日期时间类型转换成字符串

private static void testLocalDateToString() {
        //localDate --> String 
        LocalDate localDate = LocalDate.now();
        String format1 = localDate.format(DateTimeFormatter.BASIC_ISO_DATE);    //yyyyMMdd
        String format2 = localDate.format(DateTimeFormatter.ISO_DATE);            //yyyy-MM-dd
        
        
        //2.LocalTime  --> String
        LocalTime localTime = LocalTime.now();
        String format3 = localTime.format(DateTimeFormatter.ISO_TIME);            //20:19:22.42
        DateTimeFormatter formatter = DateTimeFormatter.ofPattern("hh:mm:ss");
        String format4 = localTime.format(formatter);
        
        //3.LocalDateTime  --> String        
        LocalDateTime localDateTime = LocalDateTime.now();
        DateTimeFormatter formatter2 = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss");
        String format5 = localDateTime.format(formatter2);
        
        System.out.println(format1);
        System.out.println(format2);
        System.out.println(format3);
        System.out.println(format4);
        System.out.println(format5);
        
}

毫秒数转LocalDateTime的用法

最近学习session遇到了一个将毫秒转成日期的问题,网上除了用Date,然后格式化日期,就没有别的方法了。

自己摸索了一下, 给出另外两种解决方案:LocalDateTime 和 Instant

public long getCreationTime()
该方法返回该 session 会话被创建的时间,自格林尼治标准时间 1970 年 1 月 1 日午夜算起,以毫秒为单位。


public long getLastAccessedTime()
该方法返回客户端最后一次发送与该 session 会话相关的请求的时间自格林尼治标准时间 1970 年 1 月 1 日午夜算起,以毫秒为单位。

第一种解决方案:LocalDateTime 

//session.getCreationTime()/1000 将毫秒转换成秒,再转换成日期。
//ZoneOffset.ofHours(8)-->中国上海时区
LocalDateTime createTime = LocalDateTime.ofEpochSecond(session.getCreationTime()/1000, 0, ZoneOffset.ofHours(8));
打印结果:2017-06-13T10:52:14

第二种解决方案:Instant。原理同上,只是不需要写时区。

Instant createTime=Instant.ofEpochSecond(session.getCreationTime()/1000);
打印结果:2017-06-13T02:53:13Z

111