In java my application, I am fetching the data from google sheet using google spreadsheet api v4 . But, I am getting the data in List<List<Object>>
format, how to get it in a Map or JSON format.
For Eg this is my code to fetch data from spreadsheet.
ValueRange response = service.spreadsheets().values()
.get(spreadsheetId)
.execute();
>)
– user3458271 Feb 20 '17 at 16:43