标签: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(); }
标签:star tar set strong code bsp form logs alt
原文地址:http://www.cnblogs.com/mr-wuxiansheng/p/6863887.html