I am trying to read values from google spreadsheets.
String range = "A1:20";
ValueRange response = sheet.spreadsheets().values().get(spreadsheetId, range)
.execute();
List<List<Object>> values = response.getValues();
if (values == null || values.size() == 0) {
System.out.println("No data found.");
} else {
System.out.println("Name, Major");
System.out.println(values);
for (List row : values) {
// Print columns A and E, which correspond to indices 0 and 4.
System.out.printf("%s\n", row.get(0));
}
}
I am having a spreadsheet with multiple rows and columns. I need to read the entire data present in the sheet. Above code is working fine and reading 20 rows of the first column but I am not able to set range variable values to automatically read all rows and column from sheet.
In addition I want to read data types of every column with values in json format at server end.
If I am understanding you correctly, you want to get data in the entire sheet using getDataRange() found here:
https://developers.google.com/apps-script/reference/spreadsheet/sheet#getDataRange()