使用Google文档列表API插入Google电子表格文档并进行更新

时间:2012-02-28 10:13:21

标签: java google-spreadsheet-api

我对此非常困惑。我尝试了很多,我无法在互联网上的任何地方找到合适的答案。我的要求如下。

我必须创建一个电子表格文档并将数据写入其中。

出于身份验证的目的,我使用客户端身份验证(将用户名和密码传递给服务)。到目前为止,我想出了以下内容。

DocumentListEntry newDoc = new SpreadsheetEntry();
newDoc.setTitle(new PlainTextConstruct("Favourite Product Template"));
DocsService service = new DocsService("dh-renaissance-v1");
service.setUserCredentials(username, password);
DocumentListEntry entry;
entry = service.insert(new URL("https://docs.google.com/feeds/default/private/full/"),newDoc);

现在,我知道我必须使用Google Spreadsheets API来更新文档的内容。问题是,如何在使用谷歌电子表格API时关联此文档,以便我可以修改它。我搜索了很多,我找到了在Feed中列出多个文档的方法,但我找不到如何获得单个文档。

请帮帮我。

谢谢和问候,

Pavan Andhukuri。

0 个答案:

没有答案