我需要打开.pdf文件。
在清单中
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
代码
file = new File("/storage/emulated/0/Download/ccAlTT_D__.pdf");
Uri uri = Uri.fromFile(file);
Intent intentOpenFile = new Intent(Intent.ACTION_VIEW);
intentOpenFile.setDataAndType(uri, "application/pdf");
intentOpenFile.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intentOpenFile);
档案路径是对的。 它不适用于Android 6,它适用于以下版本。 当我点击按钮 - pdf文件打开,但立即关闭。
记录
12-23 14:06:53.248 18679-16520/? E/DisplayData: openFd: java.io.FileNotFoundException: Permission denied
12-23 14:06:53.248 18679-16520/? E/PdfLoader: Can't load file (doesn't open) Display Data [PDF : ccAlTT_D__.pdf] +UriOpenable
12-23 14:06:53.381 881-896/? E/KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state: open failed: ENOENT (No such file or directory)
我的清单
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="***">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:1)
您不应该将文件作为文件URL传递给intent,因为无法保证(如此处)接收应用程序有权访问该文件。
通过FileProvider
内容提供商网址传输文件中的数据。
答案 1 :(得分:0)
Intent intent = new Intent(Intent.ACTION_VIEW);
File file = new File( filename );
intent.setDataAndType( Uri.fromFile( file ), "application/pdf" );
startActivity(intent);
OR
Intent intent = new Intent();
intent.setPackage("com.adobe.reader");
intent.setDataAndType(Uri.fromFile(file), "application/pdf");
startActivity(intent);