Reading data from google docs spreadsheets

In my application, I have to show the details of the Google Docs spreadsheet.

In this table I have 2 sheets. Each sheet information I must show in two different actions.

Can someone help me implement this functionality. What is required for this? I found one jar named jxl.jar. Should I use this?

+6
source share
1 answer

For:

programmatically access and manage user data stored in Google Docs

there is a google doc list API .

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

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

+5
source

Source: https://habr.com/ru/post/898136/


All Articles