EventDateTime d1 = event.getStart();
SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
String outputDate = outputFormat.format(d1.getDate());
我无法在字符串中获取日期。
EventDateFormat.getDate()
得到
The date, in the format "yyyy-mm-dd", if this is an all-day event.
您可能想改用getDateTime()。