5

有没有一种好方法可以通过 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;
}

并浏览条目,但我不想一次加载整个专栏,这对我的用户来说很慢,而且只浏览整个专栏似乎很糟糕

有什么想法吗?

4

1 回答 1

0

这个小片段将使用 Google Apps 脚本在 Google 电子表格中创建一个函数:

function emptySpace(array) {
  // set counter
  var counter = 0;

  // itterate through values
  for (i in array){
    if (array[i].length > 1) {
      throw ("Only single column of data");
    } else {
      if(array[i][0] != "") {
        counter++;
      } else {
        break;
      }
    }
  }

  // return value + 1 
  return counter + 1;
}

通过脚本编辑器将此脚本添加到您的电子表格中,并且在整个工作表中都可以使用函数 emptySpace,如下所示=emptySpace(A1:A7)

请参阅我创建的示例文件:空白空间

于 2013-01-11T19:00:07.710 回答