在Android中查找已保存的图像

时间:2013-08-15 09:38:40

标签: android image save

我在网上发现这个代码将位图保存到Android的内部存储中,但似乎没有保存,或者我找不到图像。如果这样做,这会保存图像在哪里?

public boolean saveImageToInternalStorage(Bitmap image) {

    try {
        // Use the compress method on the Bitmap object to write image to
        // the OutputStream
        FileOutputStream fos = context.openFileOutput("desiredFilename.png", Context.MODE_PRIVATE);

        // Writing the bitmap to the output stream
        image.compress(Bitmap.CompressFormat.PNG, 100, fos);
        fos.close();

        return true;
    } catch (Exception e) {
        Log.e("saveToInternalStorage()", e.getMessage());
        return false;
    }
}

由于

1 个答案:

答案 0 :(得分:1)

请参阅此博文简要解释:

http://rajareddypolam.wordpress.com/?p=3&preview=true

&安培;

尝试这种方法:

String root = Environment.getExternalStorageDirectory().toString();
File myDir = new File(root + "/saved_images");    
myDir.mkdirs();
Random generator = new Random();
int n = 10000;
n = generator.nextInt(n);
String fname = "Image-"+ n +".jpg";
File file = new File (myDir, fname);
if (file.exists ()) file.delete (); 
try {
       FileOutputStream out = new FileOutputStream(file);
       finalBitmap.compress(Bitmap.CompressFormat.JPEG, 90, out);
       out.flush();
       out.close();

} catch (Exception e) {
       e.printStackTrace();
}

我觉得你忘记的是写图像的许可

 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />