Timestamp 使用_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > Timestamp 使用

Timestamp 使用

 2016/11/5 5:32:21  e_e  程序员俱乐部  我要评论(0)
  • 摘要:SimpleDateFormatsdf=newSimpleDateFormat("yyyy-MM-ddHH:mm:ss");Calendarcal=Calendar.getInstance(TimeZone.getTimeZone(Configuration.zoneid));CalendarstartCalendar=Calendar.getInstance(TimeZone.getTimeZone(Configuration.zoneid));startCalendar
  • 标签:使用

? ? ? ? SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

? ? ? ? Calendar cal = Calendar.getInstance(TimeZone.getTimeZone(Configuration.zoneid));

? ? ? ??

?

? ? ? ? Calendar startCalendar = Calendar.getInstance(TimeZone.getTimeZone(Configuration.zoneid));

? ? ? ? startCalendar.setTimeInMillis(start);

? ? ? ? String startStr = sdf.format(startCalendar.getTime());

? ? ? ??

? ? ? ? Calendar endCalendar = Calendar.getInstance(TimeZone.getTimeZone(Configuration.zoneid));

? ? ? ? endCalendar.setTimeInMillis(end);

? ? ? ? String endStr = sdf.format(endCalendar.getTime());

? ? ? ??

? ? ? ? BasicDBObject dateCondition = new BasicDBObject();

? ? ? ? if (start != null && start != 0) {

? ? ? ? ? ? Date now = cal.getTime();

? ? ? ? ? ? if (startCalendar.after(now)) {

? ? ? ? ? ? ? ? return Return.FAIL(400, "开始时间 大于 当前时间!");

? ? ? ? ? ? }

? ? ? ? ? ? Timestamp starTime = Timestamp.valueOf(startStr);

? ? ? ? ? ? dateCondition.put("$gte", starTime);

? ? ? ? }

? ? ? ? if (end != null && end != 0) {

? ? ? ? ? ? Timestamp endTime = Timestamp.valueOf(endStr);

? ? ? ? ? ? dateCondition.put("$gte", endTime);

? ? ? ? }

? ? ? ??

?

? ? ? ??

? ? ? ? logger.info("从" + startStr + "到" + endStr + "jobs信息查询");

?

发表评论
用户名: 匿名