FileOutputStream fos = con.openFileOutput(fileName,con.MODE_PRIVATE); fos.write(baf.toByteArray()); // baf - ByteArrayBuffer fos.close();
任何人都可以帮我从内部显示这个图像文件显示在一个激活?
ImageView imageView = (ImageView) findViewById(R.id.image); File filePath = getFileStreamPath(fileName); imageView.setImageDrawable(Drawable.createFromPath(filePath.toString()));
在上面的代码片段中,R.id.image是布局中某处ImageView的id. fileName是一个String,包含您在openFileOutput调用中使用的文件的名称.