tags:

views:

58

answers:

1

Hi,
I don't how to do this task.using the getpath() method i can get the path of the database.In the Terminal Emulator using commends i can see the database file which contains the queries what i have executed,that file is saved in the emulator memory.How can i access that file from an anroid application.Is this is possible.please help me.

+1  A: 

you can get getContext().openFileInput() to get files created by/for the current application. these files are in /data/data/com.you.application/ and have the uid/gid related to the app for security purposes

Reflog