android 我尝试在imageView中设置图像,并在PC上设置图像的绝对路径

kb5ga3dv  于 2022-11-27  发布在  Android
关注(0)|答案(1)|浏览(272)
try {
    File imgFile = new File("C:\\imageedit_7_6497580408.png");
    Bitmap imgBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
    imageView.setImageBitmap(imgBitmap);
} catch (Exception e) {
    e.printStackTrace();
}

这是错误E/BitmapFactory:无法解码流:java.io.FileNotFoundException:/C:\imageedit_7_6497580408.png(没有这样的文件或目录)
我想在imageView中设置图像,但要使用PC中图像的绝对路径。我不想使用模拟器库,我想从PC中获取图像

相关问题