I know I can use this code:

Values sheets = service.spreadsheets().values();
System.out.println(service.spreadsheets().get(insertsheetId));
for (TableBean tb : tables) {

String InsertRange = tb.getTableName();
                        ValueRange response = sheets.get(insertsheetId, 
InsertRange).execute();

this code I can get one sheet through inputting sheet's name into range. 
but I want to do loop to deal every sheet. How to do?How can I just get the 
number of total sheets.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Spreadsheets API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to