我正在尝试将当前UTC时间上传到Parse中的日期“字段”。我怎么能这样做?
DateFormat df = DateFormat.getTimeInstance();
df.setTimeZone(TimeZone.getTimeZone("utc"));
String utcTime = df.format(new Date());
message.put("lastReplyUpdatedAt", utcTime);
message.saveInBackground();
不幸的是,我似乎无法为上面的类获得正确的导入,因此我无法构造我的String。我能在这做什么?另外我不确定Parse是否会接受String。我需要考虑哪些特殊格式?
答案 0 :(得分:3)
Date
从Parse platform documentation传递Date
对象而不是字符串。
Date myDate = new Date();
message.put("lastReplyUpdatedAt", myDate);
message.saveInBackground();