如何在Java Client Library中按日期查询?

时间:2011-09-07 15:02:12

标签: java gdata-java-client

我想检索使用Java Client Library在特定日期之后上传的Google文档。 我使用这段代码:

DocumentQuery query = new DocumentQuery(feedUri);
query.setPublishedMin(new DateTime(new Date().getTime()));

我得到了这样的例外:

com.google.gdata.util.ServiceForbiddenException: This service does not support the 'published-min' parameter.
at com.google.gdata.client.http.HttpGDataRequest.handleErrorResponse(HttpGDataRequest.java:593)
at com.google.gdata.client.http.GoogleGDataRequest.handleErrorResponse(GoogleGDataRequest.java:563)
at com.google.gdata.client.http.HttpGDataRequest.checkResponse(HttpGDataRequest.java:550)
at com.google.gdata.client.http.HttpGDataRequest.execute(HttpGDataRequest.java:530)
at com.google.gdata.client.http.GoogleGDataRequest.execute(GoogleGDataRequest.java:535)
at com.google.gdata.client.Service.getFeed(Service.java:1135)
at com.google.gdata.client.Service.getFeed(Service.java:1077)
at com.google.gdata.client.GoogleService.getFeed(GoogleService.java:662)
at com.google.gdata.client.Service.getFeed(Service.java:1034)
at ua.com.stormlabs.gap.gdocs.GDocumentsRetriever.getAllDocs(GDocumentsRetriever.java:84)
at ua.com.stormlabs.gap.gdocs.GDocsServiceProcessor.start(GDocsServiceProcessor.java:56)
at ua.com.stormlabs.gap.gdocs.GDocsGapApp.main(GDocsGapApp.java:21)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120)

1 个答案:

答案 0 :(得分:0)

我发现此功能对Picasa不起作用。 http://code.google.com/p/gdata-issues/issues/detail?id=138

对于其他一些按日期查询的服务工作正常。