tags:

views:

37

answers:

1

Hi Friends,

I want to store image in sdcard using android coding,Anybody know the code for image store in sdcard using Android coding..

Thanks All

+1  A: 

Use Environment.getExternalStorageDirectory() to get a File object pointing to the root of external storage (which may or may not be an "sdcard"). From there, use standard Java file I/O.

CommonsWare