1
EventDateTime d1 = event.getStart();
SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
String outputDate = outputFormat.format(d1.getDate());

我无法在字符串中获取日期。

4

1 回答 1

1

EventDateFormat.getDate()得到
The date, in the format "yyyy-mm-dd", if this is an all-day event.

您可能想改用getDateTime()

于 2012-07-09T07:03:00.927 回答