使用Java从Google Calendar服务中读取XML响应

时间:2011-04-29 19:05:40

标签: java xml google-calendar-api gdata-api

我想使用作为Google日历API一部分提供的新查询繁忙时间API来检索用户的繁忙时间。结果是一个只读的feed,其中包含用户的繁忙时间块,如下所示:

<entry xmlns="http://www.w3.org/2005/Atom" xmlns:gCal="http://schemas.google.com/gCal/2005"
 xmlns:gd="http://schemas.google.com/g/2005"
 gd:kind='calendar#freebusy' >
  <id>http://www.google.com/calendar/feeds/default/freebusy/busy-times/liz%40example.com</id>
  <updated>2010-03-13T00:00:00.000Z</udpated>
  <link rel='self'
  href='https://www.google.com/calendar/feeds/default/freebusy/busy-times/liz%40example.com' />
  <author>
    <name>liz@example.com</name>
    <email>liz@example.com</email>
  </author>
  <gCal:timeRange>
    <gd:when startTime='2010-03-13T00:00:00Z' endTime='2010-03-14T00:00:00Z'/>
  <gCal:timeRange>
  <gCal:busy>
    <gd:when startTime='2010-03-13T14:00Z' endTime='2010-03-13T14:30Z'/>
  </gCal:busy>
  <gCal:busy>
    <gd:when startTime='2010-03-13T16:00Z' endTime='2010-03-13T16:30Z'/>
  </gCal:busy>
</entry>

基于上面的返回Feed,如何使用Calendar Data API for Java来获取每个繁忙时间块,以便我可以阅读并使用它们执行某些操作,例如打印到终端?返回的Feed类型是什么,CalendarEventFeed,CalendarFeed,......?

CalendarService service = new CalendarService("myapp-v1");          
service.setOAuthCredentials(oauthParameters, new OAuthHmacSha1Signer());    
URL feedUrl = new URL(METAFEED_URL_BASE+FREEBUSY_FEED_URL_SUFFIX+user.username());
CalendarEventFeed resultFeed = service.getFeed(feedUrl, CalendarEventFeed.class);

1 个答案:

答案 0 :(得分:2)

AppEngine支持(自1.2.8起)JAXB XML-to-objects数据绑定API。 Web上有许多示例和教程(尽管大多数都侧重于从XML模式自动生成类 - 您不需要这样做)。例如:http://www.vogella.de/articles/JAXB/article.html

或者您可以使用Calendar Data API for Java,并完全放弃XML转换步骤。