Skip to content Skip to sidebar Skip to footer

Read Excel File In Android

Im developing an android App I want to read the data in from Excel File Anyone having Idea How to read Excel file in android. I keep my file in res/raw folder and try to read it as

Solution 1:

Try using Apache POI

Also, see this related question

Solution 2:

Keep the file in the SDcard and give the path of the SDCArd while reading the file

FilesdCard= Environment.getExternalStorageDirectory();
Filedir=newFile(sdCard.getAbsolutePath() + "/Excel/filename.xls");

For eg. if you are keeping the file in excel folder then give the path as above

Post a Comment for "Read Excel File In Android"