Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Read data from google docs spreadsheets

In my app I have to show the details of a google docs spreadsheet.

In this spreadsheet I have 2 sheets. Each sheet details I have to show in 2 different activities.

Can anyone help me out to implement this functionality. What all things are required for this? I found one jar named jxl.jar. Should I use that?

like image 660
Anju Avatar asked Sep 27 '11 09:09

Anju


People also ask

Can Google Sheets pull data from another Google sheet?

If you keep data in separate Google Sheets, copy a range of data from one spreadsheet to another with the IMPORTRANGE function. For example, you may track quarterly sales data for a product in a different spreadsheet for each region.


1 Answers

For:

programmatically access and manipulate user data stored with Google Documents

there is the Google Documents List API.

If you want to create/edit spreadsheets, you'll need to use the Google Spreadsheets API.

Both those APIs are part of the gData-API. The Java-client library s (.jar-files which can be used with your Android Project) can be downloaded here.

like image 107
Lukas Knuth Avatar answered Oct 05 '22 23:10

Lukas Knuth