The path is of my local system looks like E:\Images\pic1.jpg
File file = new File(path);
Log.d("swati","load bitmap from source "+file.getPath()+" " +file.exists());
if (file.exists()) {
bitmap = BitmapFactory.decodeFile(file.getPath());
}
the file.exists
returns false
thus causing null pointer exception ... please help