我有一個PDF文件存儲在我的資產中。我想從我的資產中加載PDF並在應用程序本身中閱讀它,而無需使用任何第三方應用程序進行查看。從資產中加載PDF文件到應用程序
我在這裏得到了解決方案link。從sdcard中選擇文件時它工作正常。
我有一個PDF文件存儲在我的資產中。我想從我的資產中加載PDF並在應用程序本身中閱讀它,而無需使用任何第三方應用程序進行查看。從資產中加載PDF文件到應用程序
我在這裏得到了解決方案link。從sdcard中選擇文件時它工作正常。
下面的代碼片段可以幫助你從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
希望這會對你有所幫助。
它的更好,如果你能使用的WebView
WebView web = (WebView) findViewById(R.id.webView1);
web.loadUrl("file:///android_asset/yourpdf.pdf");
希望工程打開它。
哎呀,我剛纔檢查時,PDF無法在Web視圖 對不起
沒有夥伴它昂貴的做法,也需要一些時間來加載哪些用戶不能等待 – Goofy 2013-02-12 11:23:36
你認爲從資產文件夾中的文件複製到SD卡中加載? – Pallavi 2013-02-12 11:07:32
是的,我已經試過 – Goofy 2013-02-12 11:11:15
檢查[this](https://stackoverflow.com/questions/47647784/trying-to-open-pdf-file-from-assets-folder-using-fileprovider-but-it-gives- filen?answertab = active#tab-top「這會幫助你」)! one – 2017-12-05 13:22:37