web-dev-qa-db-fra.com

Sauvegarde de la toile Android toujours Java.io.IOException: échec de l'ouverture: ENOENT (fichier ou répertoire de ce type)

J'ai une application de toile. J'essaie de créer une application de signature avec Canvas + onTouchListener.

C’est ma méthode de sauvegarde, où j’essaie de sauvegarder la signature dans une image:

private void save() {
    hideMenuBar();
    View content = this;
    content.setDrawingCacheEnabled(true);
    content.setDrawingCacheQuality(View.DRAWING_CACHE_QUALITY_HIGH);
    Bitmap bitmap = content.getDrawingCache();
    String path = Environment.getExternalStorageDirectory().getAbsolutePath();
    String imgPath = path+"/imotax/capture/spop/ttd/image" + "temp" + ".jpg";
    File file = new File(imgPath);
    FileOutputStream ostream;
    try {
        file.createNewFile();
        ostream = new FileOutputStream(file);
        bitmap.compress(CompressFormat.JPEG, 100, ostream);
        ostream.flush();
        ostream.close();
        Toast.makeText(getContext(), "image saved", 5000).show();
    } catch (Exception e) {
        e.printStackTrace();
        Log.i("ttd", e.toString());
        Toast.makeText(getContext(), "Failed To Save", 5000).show();
        showMenuBar();
    }
}

Je ne sais pas pourquoi, mais il y a toujours une erreur ou une erreur dans l'instruction catch:

Java.io.IOException: open failed: ENOENT (No such file or directory)
10
yozawiratama

Essayez de cette façon

private void save() {
        try {
            hideMenuBar();
            View content = this;
            content.setDrawingCacheEnabled(true);
            content.setDrawingCacheQuality(View.DRAWING_CACHE_QUALITY_HIGH);
            Bitmap bitmap = content.getDrawingCache();

            String extr = Environment.getExternalStorageDirectory().toString();
            File mFolder = new File(extr + "/imotax/capture/spop/ttd/image");
            if (!mFolder.exists()) {
                mFolder.mkdir();
            }

            String s = "tmp.png";

            File f = new File(mFolder.getAbsolutePath(), s);

            FileOutputStream fos = null;
            fos = new FileOutputStream(f);
            bitmap.compress(CompressFormat.JPEG, 100, fos);
            fos.flush();
            fos.close();

            bitmap.recycle();

            Toast.makeText(getContext(), "image saved", 5000).show();
        } catch (Exception e) {
            Toast.makeText(getContext(), "Failed To Save", 5000).show();
        }
    }

METTRE À JOUR

File mFolder = new File(extr + "/imotax/capture/spop/ttd/image");  //replace with

File mFolder = new File(extr + "/imotax");
12
Biraj Zalavadia
Add this permissions in manifest.

<uses-permission Android:name="Android.permission.WRITE_EXTERNAL_STORAGE" />
9
anjaneya

Ne me demandez pas pourquoi mais cela semble être un problème avec les droits d'accès. Essayez d'utiliser un répertoire public. En utilisant quelque chose comme:

Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS)
0
bluscreen