I want to read a Open Office Document spreadsheet (.ods file) from my android application. I need to basically loop through the first two columns & store them in a SQLite database.
I am able to do this by reading a regular text file stored in res/raw using the following code:
InputStream is = context.getResources().openRawResource(R.raw.my_text_file);
But no clue how to do the same for an .ods file.
I searched through SOF & found a reference to jOpenDocument . But they talk about libraries that are not part of the android SDK & I don't know what to do with these.
Any help is appreciated!