如何读取存储在内存中的图像文件?

时间:2010-09-27 09:53:48

标签: android image

在我的Android应用程序中,我使用下面的代码将图像文件存储在内部存储器中 -

FileOutputStream fos = con.openFileOutput(fileName, con.MODE_PRIVATE);
fos.write(baf.toByteArray()); // baf - ByteArrayBuffer
fos.close();

任何人都可以帮我从内部显示这个图像文件吗?

1 个答案:

答案 0 :(得分:17)

试试这个:

ImageView imageView = (ImageView) findViewById(R.id.image);
File filePath = getFileStreamPath(fileName);
imageView.setImageDrawable(Drawable.createFromPath(filePath.toString()));

在上面的代码段R.id.image中,您的布局中某处是ImageView的ID。 fileNameString,其中包含您在openFileOutput电话中使用的文件的名称。