คำถามติดแท็ก android-storage

30
ข้อยกเว้น 'การเปิดล้มเหลว: EACCES (ปฏิเสธการอนุญาต)' บน Android
ฉันได้รับ เปิดล้มเหลว: EACCES (Permission denied) ในบรรทัด OutputStream myOutput = new FileOutputStream(outFileName); android.permission.WRITE_EXTERNAL_STORAGEฉันจะตรวจสอบรากและฉันพยายาม ฉันจะแก้ไขปัญหานี้ได้อย่างไร try { InputStream myInput; myInput = getAssets().open("XXX.db"); // Path to the just created empty db String outFileName = "/data/data/XX/databases/" + "XXX.db"; // Open the empty db as the output stream OutputStream myOutput = new FileOutputStream(outFileName); // Transfer …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.