0

我的资产中存储了一个 PDF 文件。我想从我的资产中加载 PDF 并在应用程序本身中阅读它,而不使用任何 3rd 方应用程序来查看。

我在这个链接中得到了解决方案。从 sdcard 中选择文件时它工作正常。

4

2 回答 2

2

以下代码段可能会帮助您访问文件asset夹中的文件,然后打开它:

private void ReadFromAssets()
{
    AssetManager assetManager = getAssets();

    InputStream in = null;
    OutputStream out = null;
    File file = new File(getFilesDir(), "file.pdf");
    try
    {
        in = assetManager.open("file.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.parse("file://" + getFilesDir() + "/file.pdf"),
            "application/pdf");

    startActivity(intent);
}

方法copyFile如下:

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);
    }
}

编辑

为此,您必须使用外部库。下面的链接解释得很好: Render a PDF file using Java on Android

希望这会帮助你。

于 2013-02-12T11:07:57.757 回答
1

如果您可以使用 webview 打开它会更好

WebView web = (WebView) findViewById(R.id.webView1);

web.loadUrl("file:///android_asset/yourpdf.pdf");

希望它有效。

糟糕,刚才我检查了,无法在 web 视图中加载 pdf 抱歉

于 2013-02-12T11:22:19.057 回答