I am developing android app where SQlite as a database.I want to export my android app database in to excel file format programmatically, so that normal people can read thei
Excel reads CSV, so this would by far be your easiest option. Have a look at opencsv
http://opencsv.sourceforge.net
it contains pretty much everything you need. The process becomes as simple as:
and thats it really :)
EDIT: Based on your comments below, I suggest you take a look at this thread
How can I use external JARs in an Android project?
EDIT for gradle dependencies
Add compile 'com.opencsv:opencsv:4.1' to app gradle. That's it. No need to add jars.
Reference: http://opencsv.sourceforge.net/dependency-info.html