我的本地系统的路径看起来像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());
}
file.exists
返回false
因此导致空指针异常...请帮助