从资产加载应用程序中的pdf文件

时间:2013-02-12 11:03:35

标签: android pdf

我的资产中存有PDF文件。我想从我的资产中加载PDF并在应用程序中自己阅读,而无需使用任何第三方应用程序进行查看。

我在这个link中得到了解决方案。从SD卡中选择文件时,它可以正常工作。

2 个答案:

答案 0 :(得分: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

希望这会对你有所帮助。

答案 1 :(得分:1)

如果你可以使用webview打开它,那就更好了

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

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

希望它有效。

刚才我检查过,无法在网页视图中加载pdf 遗憾