«android-file» 태그된 질문

27
android.os.FileUriExposedException : file : ///storage/emulated/0/test.txt가 Intent.getData ()를 통해 앱을 넘어 노출됨
파일을 열려고 할 때 앱이 충돌합니다. Android Nougat 아래에서 작동하지만 Android Nougat에서는 충돌합니다. 시스템 파티션이 아닌 SD 카드에서 파일을 열려고 할 때만 충돌이 발생합니다. 권한 문제가 있습니까? 샘플 코드 : File file = new File("/storage/emulated/0/test.txt"); Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(file), "text/*"); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent); // Crashes on this line 로그: …


15
SD 카드에서 자동으로 디렉토리를 만드는 방법
파일을 다음 위치에 저장하려고하는데 FileOutputStream fos = new FileOutputStream("/sdcard/Wallpaper/"+fileName); 예외가 발생합니다. java.io.FileNotFoundException 그러나 경로를 다음과 같이 입력하면"/sdcard/" 작동 합니다. 이제는이 방법으로 디렉토리를 자동으로 만들 수 없다고 가정합니다. 누군가가 directory and sub-directory사용 코드 를 만드는 방법을 제안 할 수 있습니까 ?

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.