Date类型数据的加一天

 


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

 

posted @ 2017-05-16 21:49  Mr_伍先生  阅读(4982)  评论(0编辑  收藏  举报