#android
Вопрос:
private void CopyReadAssets() {
AssetManager assetManager = getAssets();
InputStream in = null;
OutputStream out = null;
File file = new File(getFilesDir(), "abc.pdf");
try {
in = assetManager.open("abc.pdf");
out = openFileOutput(file.getName(), Context.MODE_WORLD_READABLE);
copyFile(in, out);
in.close();
in = null;
out.flush();
out.close();
out = null;
} catch (Exception e) {
Log.e("tag", e.getMessage());
}
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
intent.setDataAndType(
Uri.parse("content://" getFilesDir() "/sample.pdf"),
"application/pdf");
startActivity(intent);
}
private void copyFile(InputStream in, OutputStream out) throws IOException {
byte[] buffer = new byte[1024];
int read;
while ((read = in.read(buffer)) != -1) {
out.write(buffer, 0, read);
}
}
в файле манифеста :
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths" />
</provider>
Это мой код, я пытаюсь отобразить pdf-файл в приложении из папки «Ресурсы», когда я пытаюсь открыть его, но он пуст, показывая, что содержимое не отображается. пожалуйста, помогите мне с тем, что я делаю неправильно.
Комментарии:
1.
This is my code ii am trying to display a pdf file in the application from assets folder
. Эта папка активов в данный момент не имеет значения. Вы пытаетесь отобразить файл из getFilesDir().2. И вы должны использовать FileProvider, чтобы получить хороший uri. Теперь вы сами создаете очень недействительный.
3. после изменения, которое я получаю, вызванного: java.lang. Исключение безопасности: UID 11024 не имеет разрешения на содержимое://com.example.fireex.fileprovider/external_files/pdfFiles/sample.pdf [пользователь 0]