程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-如何通過sdcard打開pdf文件

android-如何通過sdcard打開pdf文件

編輯:編程綜合問答
如何通過sdcard打開pdf文件

我在模擬器裡保留了一份pdf文件,並且安裝過**adobe reader**。我試過用下面的代碼讀取模擬器的pdf文件

代碼:

File file = 
new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/iTunes Connect.pdf");
        Uri path = Uri.fromFile(file);
        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        intent.setDataAndType(path,"application/pdf");
        try 
        {
            startActivity(intent);
        } 
        catch (ActivityNotFoundException e) 
        {
            Toast.makeText(xv.this, 
                getString(R.string.app_name), 
                Toast.LENGTH_SHORT).show();
        }

但是報出:file path is not valid
怎麼解決?

最佳回答:


new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/iTunes\\ Connect.pdf");
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved