我只想要日期但作为Timestamp来查询CREATE_TIMESTAMP上的数据

时间:2015-06-09 07:30:34

标签: java ptc-windchill

我在CREATE_TIMESTAMP的基础上使用QuerySpec查询日期,以下是我的代码,编译器说CREATE_TIMESTAMPTimestamp,而day是String。我尝试了很多工作,但没有锻炼

Date date=new Date();
SimpleDateFormat format=new SimpleDateFormat("yyyy-MM-dd");
String day=format.format(date);
qs.appendWhere(new SearchCondition(QueueEntry.class,
                                   QueueEntry.CREATE_TIMESTAMP,
                                   SearchCondition.LIKE,day), 
                                   new int[] {0,1});

0 个答案:

没有答案