1

我正在尝试将当前的 webview 保存在 android 的缓存中(我被告知 mnt/sdcard)但是无论是使用文件资源管理器还是尝试在代码中写入它,我都会在我的 avd 模拟器上收到此错误:

java.io.FileNotFoundException: /mnt/sdcard/imageFolder/page.jpg: open failed: EACCES (Permission denied)

我也尝试先创建目录,但 mkdir() 函数返回 false。我的清单中有许可行:

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

这是我的代码:

public class screenCap extends DroidGap {

 private WebView myAppView;
    private DroidGap myGap;


 public screenCap(DroidGap gap, WebView view)
    {
     myAppView = view;
        myGap = gap;
    }   

//Captures the current webview and saves it as a jpeg so it can be loaded into
//the page flip html plugin
public void captureScreen(){

    myAppView.setDrawingCacheEnabled(true);
    Bitmap bitmap = Bitmap.createBitmap(500, 500,  Bitmap.Config.ARGB_8888);
    Canvas canvas = new Canvas(bitmap); 
    myAppView.draw(canvas);

    //Create a directory to hold the temporary image
    File f =    new File(android.os.Environment.getExternalStorageDirectory()+"/imageFolder/"+ "page.jpg");

    if (!f.getParentFile().exists());
    {
        f.getParentFile().mkdir();
        Log.d("DIRECTORY MADE!","!!!");
    }

    try {
        myAppView.getDrawingCache().compress(Bitmap.CompressFormat.JPEG, 100, new FileOutputStream(f));
    } catch (Exception e) {
        Log.e("Error--------->", e.toString());
    }       
}   

}

4

2 回答 2

1

这可能是因为您的 AVD 在创建时可能没有 SD 卡。

选择您的Virtual Device -> Edit -> Check SD Card field.

如果为空,请在此处输入尺寸。然后重新运行您的应用程序。

于 2013-03-14T04:57:43.103 回答
0

f.getParentFile().exists() 返回 false (我相信这是第一次运行时的预期) f.getParentFile().mkdir(); 我确实有 avd 管理器设置的 2gb 的 sd 卡。不过,我还没有尝试将其保存到我的一个 pc 文件夹中,这是一个选项。

于 2013-03-14T05:37:01.850 回答