码迷,mamicode.com
首页 > 其他好文 > 详细

Date类型数据的加一天

时间:2017-05-16 23:22:47      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:star   tar   set   strong   code   bsp   form   logs   alt   

 


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(); }

 

Date类型数据的加一天

标签:star   tar   set   strong   code   bsp   form   logs   alt   

原文地址:http://www.cnblogs.com/mr-wuxiansheng/p/6863887.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!