I'm developing my Android application with Eclipse IDE.
I'd like to view my application's data (saved in internal storage as described here).
"File Explorer" in Eclipse doesn't open the "data" folder
An other way of doing is to root your phone, then explore your files using shell.
With a rooted phone :
adb shell
su
cd /data/data/the.package.name.of.your.app
And there you are! You can look at your files :-)
If you want to have direct access to those files on eclipse, you need to give access to them.
Well, if you are on a dev phone, you can give full access to all the files in /data/data
Of course this is something you should never do under any circumstances on regular basis...
Simply use Busybox to copy the folder you are looking for in your sdcard
adb shell
(to enter a shell inside your phonebusybox
to check that it is installed correctlybusybox chmod a+rwx /data
busybox chmod -R a+rwx /data/data
Et Voila :-) Now you should be able to access all you files on eclipse directly!