如何访问本地系统上的图像文件以获取其位图并将其分配给android

时间:2015-09-03 11:41:35

标签: android bitmap android-imageview

我的本​​地系统的路径看起来像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因此导致空指针异常...请帮助

0 个答案:

没有答案