web-dev-qa-db-ja.com

java.io.FileNotFoundException:/ storage / emulated / 0 / New file.txt:open failed:EACCES(Permission denied)

私はファイルを暗号化し、それらのファイルを同じ場所に書き戻そうとしています。しかし、"Java.io.FileNotFoundException: /storage/emulated/0/New file.txt: open failed: EACCES (Permission denied)".というエラーメッセージが表示されました

私のManifestファイルはこれです

<manifest xmlns:Android="http://schemas.Android.com/apk/res/Android"
package="com.example.tdk.mytestapplication2">

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


<application
    Android:allowBackup="true"

私はそこで正しい許可を与えたと思います。ファイルの暗号化に使用しているコードはこれです。

public static void encrypt(SecretKey secretKey, String filePath){
    try {
        // Here you read the cleartext.
        FileInputStream fis = new FileInputStream(filePath);
        // This stream write the encrypted text. This stream will be wrapped by another stream.
        FileOutputStream fos = new FileOutputStream(filePath);

        // Create cipher
        Cipher cipher = Cipher.getInstance("AES");
        cipher.init(Cipher.ENCRYPT_MODE, secretKey);
        // Wrap the output stream
        CipherOutputStream cos = new CipherOutputStream(fos, cipher);

        // Write bytes
        int b;
        byte[] d = new byte[8];
        while ((b = fis.read(d)) != -1) {
            cos.write(d, 0, b);
        }

        // Flush and close streams.
        cos.flush();
        cos.close();
        fis.close();

    }catch(IOException e){
        e.printStackTrace();
    }catch (NoSuchAlgorithmException e){
        e.printStackTrace();
    }catch(NoSuchPaddingException e){
        e.printStackTrace();
    }catch(InvalidKeyException e){
        e.printStackTrace();
    }
}

そして、ボタン内でこのメソッドを使用しました

Button btnEncrypt = (Button) findViewById(R.id.btnEnc);
    btnEncrypt.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            aesKey = EncAndDec.generateKey();
            String filePath = editText.getText().toString();
            //Generating the file hash
            String md5Hash = MD5Hash.getMD5(filePath);

            System.out.println(aesKey.toString());
            System.out.println(filePath);
            System.out.println(md5Hash);

            //Encrypting the file
            for(int i=1; i<100; i++) {
                EncAndDec.encrypt(aesKey, filePath);
            }
        }
    });

それでも、このエラーを設定できませんでした。誰か助けてください!

23
Tharindu

Android 6.0 Marshmallow(API 23)以降を実行していると思われます。この場合、外部ストレージの読み取り/書き込みを試みる前に、mustruntime permissions を実装する必要があります。

38
Bryan

Android 6.0 Marshmallow(API 23)以降でアプリを実行するためのランタイム許可を実装します。

または、手動でストレージ許可を有効にすることができます-

goto settings> apps> "your_app_name">それをクリックし、次に許可をクリックして>ストレージを有効にします。それでおしまい。

しかし、私は最初のものに行くことをお勧めします、それはあなたのコードにランタイムパーミッションを実装することです。

16
Debasish Mondal