從 Android 應用程式中的資源資料夾讀取 PDF 檔案涉及一些特定步驟。
在提供的程式碼中,為「abc.pdf」檔案指定的檔案路徑會出現問題。使用的路徑「android.resource://com.project.datastruct/assets/abc.pdf」不正確。
要解決此問題,請按照以下步驟操作:
這是經過必要修改的更新代碼:
<code class="java">public class SampleActivity extends Activity { @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(); in = null; out.flush(); out.close(); out = null; } catch (Exception e) { Log.e("tag", e.getMessage()); } Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType( Uri.fromFile(file), "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); } } }</code>
此更新程式碼將正確複製「abc.pdf」將檔案儲存到應用程式的內部存儲,並使用正確的檔案路徑在第三方PDF 檢視器中開啟PDF。
以上是如何從Android應用程式的assets資料夾中正確讀取PDF檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!