android - 更快地插入谷歌电子表格

时间:2015-02-27 12:39:50

标签: android google-api google-sheets cell google-spreadsheet-api

我有一个Android应用程序,使用工作表API写入谷歌电子表格。

我正在写一个特定的专栏,例如 - 4

这是写作的代码:

URL practiceToUpdateFeedUrl = null;
CellFeed practiceToUpdateCellFeed = null;
int ROWS_NUMBER = 20;

practiceToUpdateFeedUrl = new URI(worksheet.getCellFeedUrl()
.toString() + "?min-col=4&max-col=4").toURL();
practiceToUpdateCellFeed = service.getFeed(practiceToUpdateFeedUrl,
cellFeed.class);

// inserting to the column the text
for (int i = 0; i < ROWS_NUMBER ; i++) {
    newEntry = new CellEntry(i + 1, 4, "insert to cell number" + (i+1));
    service.insert(practiceToUpdateFeedUrl, newEntry);
}

我的问题是 - 有更快的方法吗?

通过这种方式,我对API进行了大约20次调用,是否有更快的方式?

提前致谢

1 个答案:

答案 0 :(得分:0)

我已成功通过AJAX POST从混合(基于Phonegap的)Android和iOS应用程序将数据输入到谷歌电子表格中。查看this blog post,可能就是您要找的内容。