在Android中打开pdf的问题:文件路径无效

时间:2011-10-25 10:23:20

标签: java android pdf

我需要从我的Android应用程序打开一个pdf文件。我将pdf保存在app包文件夹(/data/data/com.app.example/files)中。我已经在Android模拟器中安装了adobe reader app。问题是当我尝试用adobe reader打开pdf文件时,模拟器会向我显示下一条消息:文件路径无效。

我不知道为什么会这样,但我坚持这一点。文件保存正确,因为我可以在我的电脑中打开它。

以下是代码:

HttpClient client = new DefaultHttpClient();
        HttpGet request = new HttpGet(url);
        try {
            HttpResponse response = client.execute(request);
            request(response, file_name);

            File file = new File("data/data/com.app.example/files/"+file_name);

            PackageManager packageManager = getPackageManager();
            Intent testIntent = new Intent(Intent.ACTION_VIEW);
            testIntent.setType("application/pdf");
            List list = packageManager.queryIntentActivities(testIntent, PackageManager.MATCH_DEFAULT_ONLY);
            if(file.exists())
            {
                  if (list.size() > 0 && file.isFile()) {
                        Intent intent = new Intent();
                        intent.setAction(Intent.ACTION_VIEW);
                        Uri uri = Uri.fromFile(file);
                        intent.setDataAndType(uri, "application/pdf");
                        intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);     

                        startActivity(intent);
                  }else
                  {
                        System.out.println("NO APPs TO OPEN PDFs.");
                  }
            }
            else
            {
                  System.out.println("FILE DOES NOT EXIST.");
            }           
        }catch(Exception ex){
            System.out.println("Failed!");
            ex.printStackTrace();
        }


public String request(HttpResponse response, String file){
        String result = "";
        try{
            InputStream in = response.getEntity().getContent();
            FileOutputStream f = openFileOutput(file, MODE_WORLD_WRITEABLE);
            byte[] buffer = new byte[in.toString().length()];
            int len1 = 0;
            int counter = 0;
            while ((len1 = in.read(buffer)) > 0) {
                f.write(buffer, 0, len1);
                counter++;
            }
            f.close();
        }
        catch(Exception ex){
            result = "Error";
        }
        return result;
    }

提前致谢。

问候,Javi。

2 个答案:

答案 0 :(得分:4)

这是因为PDF文件驻留在您自己的软件包中,而Adobe读者试图从您的软件包中访问PDF文件,这是Android应用程序开发所不允许的。

您可以尝试在SDCARD上保存文件,然后将其打开

答案 1 :(得分:1)

不要使用直接路径访问应用程序私有的文件到您的应用程序。而是使用

FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);

参考:http://developer.android.com/guide/topics/data/data-storage.html#filesInternal