Date类型数据的加一天

简介: SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");try { if (startDate != null && !startDate.

 


SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");

try
{ if (startDate != null && !startDate.isEmpty()) { Predicate predicate = cb.greaterThanOrEqualTo(root.<Date>get(Customer_.crtTime), sdf.parse(startDate)); predicates.add(predicate); } if (endDate != null && !endDate.isEmpty()) { Calendar cal = Calendar.getInstance(); cal.setTime(sdf.parse(endDate)); cal.add(Calendar.DATE, 1); Predicate predicate = cb.lessThanOrEqualTo(root.<Date>get(Customer_.crtTime), cal.getTime()); predicates.add(predicate); } } catch (ParseException e) { e.printStackTrace(); }

 

相关文章
|
8月前
|
JavaScript 前端开发
date对象是什么?有什么用
date对象是什么?有什么用
130 0
|
安全
Date转换
Date转换
96 0
Date转换
|
8月前
|
Java 数据库
Java【问题记录 04】时间戳类型字符串{Timestamp@15601}2021-07-14 18:56:53.0变成带T的Object类型2021-07-14T10:56:53.000+0000
Java【问题记录 04】时间戳类型字符串{Timestamp@15601}2021-07-14 18:56:53.0变成带T的Object类型2021-07-14T10:56:53.000+0000
60 0
C# string格式的日期时间转为DateTime类型
C# string格式的日期时间转为DateTime类型
407 0
|
Web App开发 JavaScript iOS开发
Date 对象
Date 对象
155 0
|
JSON Unix 数据库
25、Date 对象
Date对象可以作为普通函数直接调用,返回一个代表当前时间的字符串。
134 0
|
Go
DATETIME类型和BIGINT 类型互相转换
原文:DATETIME类型和BIGINT 类型互相转换 项目中使用BIGINT来存放时间,以下代码用来转换时间类型和BIGINT类型 SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ======================...
1513 0
Java时间Date、Calendar、TimeStamp与字符串String之前的转换
原文地址:https://www.cnblogs.com/qima/p/3652566.html 1.Calendar 转化 String Calendar calendat = Calendar.
1847 0