0

アセットに PDF ファイルが保存されています。アセットから PDF を読み込んで、サードパーティのアプリを使用せずにアプリ自体で読みたいと考えています。

このリンクで解決策を得ました。SDカードからファイルを選択するとうまくいきます。

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

それがうまくいくことを願っています。

おっと、今確認しましたが、PDF を Web ビューで読み込めません。

于 2013-02-12T11:22:19.057 に答える