I am new to Android. I've created a .csv file in SD card. Now I want to open this file but unable to do this.
Please help me on how to open a .csv file.
I am new to Android. I've created a .csv file in SD card. Now I want to open this file but unable to do this.
Please help me on how to open a .csv file.
You can open a .csv file like you would any text file. In order to read it, look for some examples in java - like Parse CSV File using StringTokenizer example
I posted some example code here: How to parse the CSV file in android application?
You would obviously have to change it slightly to access a file on the sdcard and not in the assets folder.