我在CREATE_TIMESTAMP
的基础上使用QuerySpec查询日期,以下是我的代码,编译器说CREATE_TIMESTAMP
是Timestamp
,而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});