ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

jdk8中的时间工具类

2022-03-01 18:34:01  阅读:164  来源: 互联网

标签:int jdk8 时间 LocalDateTime println static 工具 now public


1. 以前日期时间类的问题

2. JDK8获取时间对象

LocalDate(年月日)
LocatTime(时分秒)
LocatDateTime(年月日时分秒)
    
public static LocalDateTime now() : 当前时间的日期时间对象
public static LocalDateTime of(int year,
                               int month,
                               int dayOfMonth,
                               int hour,
                               int minute,
                               int second)
  • 代码
        LocalDate localDate = LocalDate.now();
        LocalTime localTime = LocalTime.now();
        LocalDateTime localDateTime = LocalDateTime.now();

        System.out.println(localDate);
        System.out.println(localTime);
        System.out.println(localDateTime);

        LocalDateTime time = LocalDateTime.of(2008, 8, 8, 20, 0, 0);
        System.out.println(time);

3. JDK8获取时间中的每一个值

		// 获取当前时间的LocalDateTime
        LocalDateTime now = LocalDateTime.now();

        // 获取年月日时分秒
        int year = now.getYear();
        int month = now.getMonthValue();
        int dayOfMonth = now.getDayOfMonth();
        int hour = now.getHour();
        int minute = now.getMinute();
        int second = now.getSecond();

        System.out.println(year + "-" + month + "-" + dayOfMonth + "-" + hour + "-" + minute + "-" + second);

4. JDK8对时间属性的加减和修改

public LocalDateTime withYear(int year) : 修改年
public LocalDateTime plusYears(long years) : 增加年
public LocalDateTime minusYears(long years) : 减少年
    
// 这类方法的返回值是LocalDateTime
// 在方法的内部修改属性值, 将修改之后的结果(LocalDateTime类型), 返回回来

5. JDK8格式化和解析

DateTimeFormatter 的获取方式: 
public static DateTimeFormatter ofPattern(String pattern) 
    : pattern(模版)-> yyyy-MM-dd HH:mm:ss

public String format(DateTimeFormatter formatter) : 将LocatDateTime转换成String (格式化)
        
        
public static LocalDateTime parse(CharSequence text,//CharSequence:String它爹,当成String
                                  DateTimeFormatter formatter)
        
        将字符串, 转换成LocalDateTime

6. JDK8时间间隔

  • Duration
public static Duration between(Temporal startInclusive, // LocalDateTime类型
                               Temporal endExclusive)   // LocalDateTime类型
    
    
Duration:
	public long getSeconds() : 获取相差的秒数
    public  int getNano()   : 获取相差的纳秒
  • Period
public static Period between(LocalDate startDateInclusive,
                             LocalDate endDateExclusive)
    
Period:
public int getYears()
public int getMonths()
public int getDays()

标签:int,jdk8,时间,LocalDateTime,println,static,工具,now,public
来源: https://www.cnblogs.com/likeguang/p/15951750.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有