Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/331.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google日历Api v3(java客户端):setRecurrence:EXDATE_Java_Google Calendar Api_Google Api Java Client_Recurrence - Fatal编程技术网

Google日历Api v3(java客户端):setRecurrence:EXDATE

Google日历Api v3(java客户端):setRecurrence:EXDATE,java,google-calendar-api,google-api-java-client,recurrence,Java,Google Calendar Api,Google Api Java Client,Recurrence,有人知道如何在Google Calendar API v3 Java客户端中设置事件的EXDATE吗 使用: RRULE工作得很好,但与getRecurrenceList recurrence的工作方式不同:只检索RRULE import com.google.api.services.calendar.model.Event; Event event = new Event(); // ... List RecurrenceList = new ArrayList<String

有人知道如何在Google Calendar API v3 Java客户端中设置事件的EXDATE吗

使用: RRULE工作得很好,但与getRecurrenceList recurrence的工作方式不同:只检索RRULE

import com.google.api.services.calendar.model.Event;



Event event = new Event();

// ...

List RecurrenceList = new ArrayList<String>();
RecurrenceList.add("RRULE:FREQ=WEEKLY;BYDAY=FR");  //this works
RecurrenceList.add("EXDATE:20121019T100000Z");  //this doesn't work

event.setRecurrence(RecurrenceList);

// ...

我想出来了,我只是没有使用UTC日期,它现在工作了

可以显示日期的示例吗?为什么你的约会没有;值=日期:?@waki;值=日期:用于指定日期。他在指定约会时间