我需要通过从 jsp 检索为 ( 的日期戳过滤 App Engine 查询strDatestamp)
。我知道 Datastore 使用 UTC 时间,但我不确定如何在解析中考虑这一点。我试过了使用Z
,但这没有用。
String strDatestamp = req.getParameter("datestamp");
String myFormatString = "yyyy-MM-dd hh:mm:ss";
Date datestamp = null;
try {
datestamp = new SimpleDateFormat(myFormatString, Locale.ENGLISH).parse(strDatestamp);
} catch (ParseException e) {
e.printStackTrace();
}
Filter filter = new FilterPredicate("date", FilterOperator.EQUAL, datestamp);
Query query = new Query("Example", key)
.setFilter(filter);