通过Java日期时间API系列8-----Jdk8中java.time包中的新的日期时间API类的LocalDate源码分析 ,可以看出java8设计非常好,实现接口Temporal, TemporalAdjuster, ChronoLocalDate等,有非常丰富的方法。例如:LocalDateTime:的部分方法:

 

包含了年月日,时分秒的属性值修改。Date中如果要进行属性值修改,必须使用Calendar才可以。现在通过将Date转换为LocalDateTime,就能非常方便,线程安全的年月日,时分秒等属性值修改。

 // modify property		public static Date withYear(Date date, long newValue){		return with(date, ChronoField.YEAR, newValue);	}		public static LocalDateTime withYear(LocalDateTime localDateTime, long newValue){		return (LocalDateTime) with(localDateTime, ChronoField.YEAR, newValue);	}		public static LocalDate withYear(LocalDate localDate, long newValue){		return (LocalDate) with(localDate, ChronoField.YEAR, newValue);	}		public static Date withMonth(Date date, long newValue){		return with(date, ChronoField.MONTH_OF_YEAR, newValue);	}		public static LocalDateTime withMonth(LocalDateTime localDateTime, long newValue){		return (LocalDateTime) with(localDateTime, ChronoField.MONTH_OF_YEAR, newValue);	}		public static LocalDate withMonth(LocalDate localDate, long newValue){		return (LocalDate) with(localDate, ChronoField.MONTH_OF_YEAR, newValue);	}		public static Date withDayOfMonth(Date date, long newValue){		return with(date, ChronoField.DAY_OF_MONTH, newValue);	}		public static LocalDateTime withDayOfMonth(LocalDateTime localDateTime, long newValue){		return (LocalDateTime) with(localDateTime, ChronoField.DAY_OF_MONTH, newValue);	}		public static LocalDate withDayOfMonth(LocalDate localDate, long newValue){		return (LocalDate) with(localDate, ChronoField.DAY_OF_MONTH, newValue);	}			public static Date withDayOfYear(Date date, long newValue){		return with(date, ChronoField.DAY_OF_YEAR, newValue);	}		public static LocalDateTime withDayOfYear(LocalDateTime localDateTime, long newValue){		return (LocalDateTime) with(localDateTime, ChronoField.DAY_OF_YEAR, newValue);	}		public static LocalDate withDayOfYear(LocalDate localDate, long newValue){		return (LocalDate) with(localDate, ChronoField.DAY_OF_YEAR, newValue);	}		public static Date withHour(Date date, long newValue){		return with(date, ChronoField.HOUR_OF_DAY, newValue);	}		public static LocalDateTime withHour(LocalDateTime localDateTime, long newValue){		return (LocalDateTime) with(localDateTime, ChronoField.HOUR_OF_DAY, newValue);	}		public static LocalTime withHour(LocalTime localTime, long newValue){		return (LocalTime) with(localTime, ChronoField.HOUR_OF_DAY, newValue);	}		public static Date withMinute(Date date, long newValue){		return with(date, ChronoField.MINUTE_OF_HOUR, newValue);	}		public static LocalDateTime withMinute(LocalDateTime localDateTime, long newValue){		return (LocalDateTime) with(localDateTime, ChronoField.MINUTE_OF_HOUR, newValue);	}		public static LocalTime withMinute(LocalTime localTime, long newValue){		return (LocalTime) with(localTime, ChronoField.MINUTE_OF_HOUR, newValue);	}		public static Date withSecond(Date date, long newValue){		return with(date, ChronoField.SECOND_OF_MINUTE, newValue);	}		public static LocalDateTime withSecond(LocalDateTime localDateTime, long newValue){		return (LocalDateTime) with(localDateTime, ChronoField.SECOND_OF_MINUTE, newValue);	}		public static LocalTime withSecond(LocalTime localTime, long newValue){		return (LocalTime) with(localTime, ChronoField.SECOND_OF_MINUTE, newValue);	}

测试类:

 @Test	public void dateCalculatorWithTest(){		Date date = new Date();		System.out.println(date);		System.out.println(DateTimeConverterUtil.toLocalDateTime(date));		System.out.println(DateTimeCalculatorUtil.getDayOfYear(date));				System.out.println(DateTimeCalculatorUtil.withYear(date, 2021));		System.out.println(DateTimeCalculatorUtil.withMonth(date, 3));		System.out.println(DateTimeCalculatorUtil.withDayOfMonth(date, 6));		System.out.println(DateTimeCalculatorUtil.withDayOfYear(date, 37));		System.out.println(DateTimeCalculatorUtil.withHour(date, 17));		System.out.println(DateTimeCalculatorUtil.withMinute(date, 30));		System.out.println(DateTimeCalculatorUtil.withSecond(date, 30));	}		@Test	public void dateCalculatorWithTest2(){		LocalDateTime ldt = LocalDateTime.now();		System.out.println(ldt);		System.out.println(ldt.getDayOfYear());				System.out.println(DateTimeCalculatorUtil.withYear(ldt, 2021));		System.out.println(DateTimeCalculatorUtil.withMonth(ldt, 3));		System.out.println(DateTimeCalculatorUtil.withDayOfMonth(ldt, 6));		System.out.println(DateTimeCalculatorUtil.withDayOfYear(ldt, 37));		System.out.println(DateTimeCalculatorUtil.withHour(ldt, 17));		System.out.println(DateTimeCalculatorUtil.withMinute(ldt, 30));		System.out.println(DateTimeCalculatorUtil.withSecond(ldt, 30));	}

输出:

Wed Feb 05 16:20:47 CST 20202020-02-05T16:20:47.95536Fri Feb 05 16:20:47 CST 2021Thu Mar 05 16:20:47 CST 2020Thu Feb 06 16:20:47 CST 2020Thu Feb 06 16:20:47 CST 2020Wed Feb 05 17:20:47 CST 2020Wed Feb 05 16:30:47 CST 2020Wed Feb 05 16:20:30 CST 2020
 
 
2020-02-05T16:21:03.760362021-02-05T16:21:03.7602020-03-05T16:21:03.7602020-02-06T16:21:03.7602020-02-06T16:21:03.7602020-02-05T17:21:03.7602020-02-05T16:30:03.7602020-02-05T16:21:30.760

源代码地址:https://github.com/xkzhangsan/xk-time

Java日期时间API系列16-----Jdk8中java.time包中的新的日期时间API类,java日期计算3,日期中年月日时分秒的属性值修改等的更多相关文章

  1. JavaScript中的内置对象-8--4.date对象中-获取,设置日期时间的方法; 获取,设置年月日时分秒及星期的方法;

    学习目标 1.掌握创建日期对象的方法 2.掌握date对象中获取日期时间的方法 3.掌握date对象中设置日期时间的方法 如何创建一个日期对象 语法:new Date(); 功能:创建一个日期时间对象 ...

  2. 在vue项目中显示实时时间(年月日时分秒)

    1.在data中定义一个变量,存储时间 data(){ return { nowTime:'' } }, 2.给定一个div <div>{{nowTime}}</div> 3. ...

  3. Sql 中获取年月日时分秒的函数

    getdate():获取系统当前时间 dateadd(datepart,number,date):计算在一个时间的基础上增加一个时间后的新时间值,比如:dateadd(yy,30,getdate()) ...

  4. js获取当前时间的年月日时分秒以及时间的格式化

    1.获取当前时间 var myDate = new Date(); 2.获取时间中的年月日时分秒 myDate.getYear(); // 获取当前年份(2位) myDate.getFullYear( ...

  5. jsp中/el表达式中将后台传来的时间戳格式化为年月日时分秒

    sp中/el表达式中将后台传来的时间戳格式化为年月日时分秒1.引入相关标签库 <%@taglib prefix="c" uri="http://java.sun.c ...

  6. C语言 - 获取系统时间 以年月日时分秒的形式输出

    ESP32需要给下位机通过UART发送时间戳,形式是年月日时分秒的十六进制数据包. #include <stdio.h> #include <time.h> int main( ...

  7. 时间格式的转化 vue与js 年月日 时分秒

    首先使用原生转化的方法 第一种 //时间转换 dateStr(d, sign) { //如果没有传递符号,给一个默认的符号 if (!sign) { sign = '-' } //获取d里面年月日时分 ...

  8. Swift3.0 iOS获取当前时间 - 年月日时分秒星期

    Swift3.0 iOS获取当前时间 - 年月日时分秒星期func getTimes() -> [Int] { var timers: [Int] = [] // 返回的数组 let calen ...

  9. [置顶] java得到前一个月的年月日时分秒

    import java.util.Calendar; /** * 得到前一个月的年月日时分秒 * @author Mr.hu * 2013-6-28上午12:00:35 * Class Explain ...

  10. jquery获取年月日时分秒当前时间

    获取年月日时分秒的当前时间,可按照某种格式显示出来,下面是一种得到如2017年02月02日  00:00:00格式的当前时间 function getCurrentDate(date){ var y ...

随机推荐

  1. Jmeter JDBC连接配置

    JDBC连接配置(JDBC Connection Configuration),用于创建数据库连接,后续可对数据库进行增删查等操作.和组件[JDBC请求(JDBC Request)]搭配使用 组件路径 ...

  2. 人形机器人(humanoid)(双足机器人、四足机器人)—— 操控员 —— 机器人数据收集操作员

    参考: https://www.youtube.com/watch?v=jbQ4M4SNb2M 机器人数据收集操控员,就和大模型训练数据收集员.数据类型标识员(打标签人员)一样,都是为了人工生成AI训 ...

  3. 【转载】 Tensorflow学习笔记-模型保存与加载

    版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明.本文链接:https://blog.csdn.net/lovelyaiq/article/det ...

  4. 【转载】 Tensorflow Guide: Batch Normalization (tensorflow中的Batch Normalization)

    原文地址: http://ruishu.io/2016/12/27/batchnorm/ ------------------------------------------------------- ...

  5. 向日葵的平替:一款个人开发的远程工具——fastnat

    相关资料: https://www.cnblogs.com/thinkingmore/p/14317505.html https://www.cnblogs.com/thinkingmore/p/15 ...

  6. python版本的两款NVIDIA显卡管理查询工具

    本文所述如题; 给出两个python版本的NVIDIA显卡管理查询工具 1.  py3nvml github下载地址: https://github.com/fbcotter/py3nvml Requ ...

  7. .NET 免费开源工业物联网网关

    前言 IoTClient 是一个针对物联网 (IoT) 领域的开源客户端库,它主要用于实现与各种工业设备之间的通信.这个库是用 C# 编写的,并且基于 .NET Standard 2.0,这意味着可以 ...

  8. 作业帮基于 DolphinScheduler 的数据开发平台实践

    摘要 随着任务数量.任务类型需求不断增长,对我们的数据开发平台提出了更高的要求.本文主要分享我们将调度引擎升级到 Apache DolphinScheduler 的实践经验,以及对数据开发平台的一些思 ...

  9. Sentry For Vue 完整接入详解(2021 Sentry v21.8.x)前方高能预警!三万字,慎入!

    内容源于:https://docs.sentry.io/platforms/javascript/guides/vue/ 系列 1 分钟快速使用 Docker 上手最新版 Sentry-CLI - 创 ...

  10. zabbix snmp OID 列表

    系统参数(1.3.6.1.2.1.1) OID 描述 备注 请求方式 .1.3.6.1.2.1.1.1.0 获取系统基本信息 SysDesc GET .1.3.6.1.2.1.1.3.0 监控时间 s ...