How to view data stored in sdcard in emulator itself?

If you're working in Eclipse, there is a built in File Explorer in the Android plugin. You can access it by going.

Up vote 0 down vote favorite share g+ share fb share tw.

The code which I used to tranfer is below try { File sd = Environment. GetExternalStorageDirectory(); File data = Environment. GetDataDirectory(); if (sd.canWrite()) { String currentDBPath = "\\data\\sharath.android.

Trail\\databases\\griet1"; String backupDBPath = "sdcard_db"; File currentDB = new File(data, currentDBPath); File backupDB = new File(sd, backupDBPath); if (currentDB.exists()) { FileChannel src = new FileInputStream(currentDB).getChannel(); FileChannel dst = new FileOutputStream(backupDB).getChannel(); dst. TransferFrom(src, 0, src.size()); src.close(); dst.close(); } boolean bool=true; if(bool == true) { Toast. MakeText(Trial1Activity.

This, "Backup Complete", Toast. LENGTH_SHORT).show(); bool = false; } } } catch (Exception e) { Log. W("Settings Backup", e); } } thanks in advance android sqlite android-emulator link|improve this question asked Apr 5 at 19:52kumar65 20% accept rate.

If you're working in Eclipse, there is a built in File Explorer in the Android plugin. You can access it by going Window > Show View... > Other > Android > File Explorer.

– kumar Apr 5 at 20:17 As far as I know, there is no "File Explorer" app that comes on the emulator. This would make it not possible to view the file on the emulator itself unless you installed some file explorer or had an app that could open it. – Jwc24678 Apr 6 at 16:00 ya...ur answer is very true – kumar 2 days ago.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions