有没有一种好方法可以通过 Java 从 Google 的电子表格服务中获取列中的第一个空单元格?
我知道我可以使用:
public CellFeed CheckColumn(int row, int col)
throws IOException, ServiceException {
CellQuery query = new CellQuery(cellFeedUrl);
query.setMinimumRow(row);
query.setMaximumRow(row);
query.setMinimumCol(col);
query.setMaximumCol(col);
query.setReturnEmpty(true);
CellFeed feed = service.query(query, CellFeed.class);
int cell_loc[];
for (CellEntry entry : feed.getEntries()) {
cell_loc=CheckIfEmpty(entry);
}
return cell_loc;
}
并浏览条目,但我不想一次加载整个专栏,这对我的用户来说很慢,而且只浏览整个专栏似乎很糟糕
有什么想法吗?