如何迭代Google表格中的所有行

时间:2017-08-28 16:42:39

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

我正在使用Google Spreadsheets Api和Android Studio。我正在从工作表中读取信息,并将结果显示在列表视图中。我的问题是我只能从第一行检索信息,而不能从下一行检索信息。我怎么能这样做?

我有下一个代码:

private class MakeRequestTask extends AsyncTask<Void, Void, List<String>> {
        private Exception mLastError = null;

        MakeRequestTask(GoogleAccountCredential credential) {

        }

        @Override
        protected List<String> doInBackground(Void... params) {
            try {
                return getDataFromApi();
            } catch (Exception e) {
                mLastError = e;
                cancel(true);
                return null;
            }
        }

        private List<String> getDataFromApi() throws IOException {

            String range = "Sheet1!A2:H";
            List<String> results = new ArrayList<String>();
            ValueRange response = mService.spreadsheets().values()
                    .get(spreadsheet_id, range)
                    .execute();
            List<List<Object>> values = response.getValues();
            if (values == null) {
                //No me deja mostrar toast aqui
            } else {
                for (List row : values) {
                        row.get(0);
                        row.get(1);
                        row.get(2);
                        row.get(5);
                        System.out.println("resultados:" + row.get(0) + ", " + row.get(1));
                    }
                }


            return results;
        }

1 个答案:

答案 0 :(得分:0)

尝试检查Reading multiples ranges

上的示例代码

要阅读多个不连续范围,请使用spreadsheets.values.batchGet,您可以指定要检索的任意数量的范围:

以下是Java代码示例:

List<String> ranges = Arrays.asList(
        //Range names ...
        );
BatchGetValuesResponse result = service.spreadsheets().values().batchGet(spreadsheetId)
        .setRanges(ranges).execute();

另一件事是尝试将for循环替换为:

for (List row : values) {
    // Print columns A and E, which correspond to indices 0 and 4.
    System.out.printf("%s, %s\n", row.get(0), row.get(4));
}

您可以指定所需的索引。在示例索引0到4中。

希望这就是你要找的东西。