從資源資料夾讀取PDF 檔案
本文解決了在Android 應用程式中從資源資料夾讀取PDF 文件的問題。嘗試存取 PDF 的使用者遇到錯誤訊息「檔案路徑無效。」
程式碼分析
提供的程式碼從資產資料夾擷取 PDF 檔案。但是,在 Intent 中指定開啟 PDF 的路徑引用了 asset 資料夾,這可能會導致權限和存取問題。
解決方案
要解決此問題,請考慮以下程式碼:
public class SampleActivity extends Activity {<pre class="brush:php;toolbar:false">@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); CopyReadAssets(); } 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(); out.flush(); out.close(); } catch (Exception e) { Log.e("tag", e.getMessage()); } Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.parse("file://" + getFilesDir() + "/abc.pdf"), "application/pdf"); //Grant permission to the user after confirming existence of the file if (file.exists()) { intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK); try { getApplicationContext().startActivity(intent); } catch (ActivityNotFoundException e) { Toast.makeText(this, "NO PDF Viewer", Toast.LENGTH_SHORT).show(); } } } 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); } }
}
說明
其他注意事項
以上是如何從 Android 應用程式中的 Assets 資料夾讀取 PDF 檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!