从 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中文网其他相关文章!