【发布时间】:2011-08-10 17:49:32
【问题描述】:
我正在尝试重命名一个集合,但我得到了错误但是
com.google.gdata.util.InvalidEntryException:请求 URI 无效
,这是我的代码
DocsService client = new DocsService("test testApp v1");
URL feedUrl = new URL("https://docs.google.com/feeds/default/private/full/folder%3A"+IDFOLDER);
DocumentListEntry newEntry = new FolderEntry();
newEntry.setId(IDFOLDER);
newEntry.setTitle(new PlainTextConstruct(newName));
client.insert(feedUrl, newEntry);
这是这样做的方法还是我做错了什么?
【问题讨论】:
-
请停止使用 google-app-engine 标记这些问题。
标签: google-api google-docs-api google-data-api google-data