I am new to Android. I created a .csv file on the SD card. Now I want to open this file, but I can not do it.
Please help me open the CSV file.
You can open a CSV file just like any text file. To read it, find some examples in java - for example Parse a CSV file using StringTokenizer example
http://code.google.com/p/secrets-for-android/source/browse/trunk/src/au/com/bytecode/opencsv/CSVReader.java?r=19
This can parse the csv file
: CSV Android?
You will obviously have to modify it a bit to access the file on the SD card, and not in the resource folder.