2013-02-12 76 views
0

我有一個PDF文件存儲在我的資產中。我想從我的資產中加載PDF並在應用程序本身中閱讀它,而無需使用任何第三方應用程序進行查看。從資產中加載PDF文件到應用程序

我在這裏得到了解決方案link。從sdcard中選擇文件時它工作正常。

+0

你認爲從資產文件夾中的文件複製到SD卡中加載? – Pallavi 2013-02-12 11:07:32

+0

是的,我已經試過 – Goofy 2013-02-12 11:11:15

+0

檢查[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

回答

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

希望這會對你有所幫助。

+0

是的,這將工作,但只安裝了外部應用程序 – Goofy 2013-02-12 11:09:01

+0

請參閱現在編輯。 – 2013-02-12 11:18:38

+0

是的,我看到我正在使用PDFViewer庫,但是你沒有解釋如何實現,你能幫我解決這個問題,在GitHib的 – Goofy 2013-02-12 11:21:12

1

它的更好,如果你能使用的WebView

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

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

希望工程打開它。

哎呀,我剛纔檢查時,PDF無法在Web視圖 對不起

+1

沒有夥伴它昂貴的做法,也需要一些時間來加載哪些用戶不能等待 – Goofy 2013-02-12 11:23:36

相關問題