4

尝试使用 Android 上的 HTTPClient 从 Internet 下载和打开 pdf 文件。我有2节课。第一个是具有下一个方法的解析器类:

public static void saveFile(String link, FileOutputStream fos) {
    DefaultHttpClient client = new DefaultHttpClient();
    try{
        client.setCookieStore(cookieStore);
        HttpGet method = new HttpGet(link);
        HttpResponse response = client.execute(method);
        HttpEntity entity = response.getEntity();
        if (entity != null) {
            entity.writeTo(fos);
            fos.close();
        }
    }catch(Exception e){
        e.printStackTrace();
    }finally{
        client.getConnectionManager().shutdown();
    }
}

下一个类是一个活动。它创建一个新的 Intent 并使用已安装的软件打开 pdf 文件(用户决定使用什么软件)。此 Activity 使用 Parser.class 和 AsyncTask 中的 upper 方法保存 pdf 文件。看起来是这样的:

   private class AsyncExecutionOfPdf extends AsyncTask<Void,Void,Void>{
    @Override
    protected Void doInBackground(Void... arg0) {
        File file;
        file = new File(getCacheDir()+"/tempFile.pdf");
        file.setWritable(true);
        file.setReadable(true);
        try {
            FileOutputStream fos = new FileOutputStream(file);
            Parser.saveFile("http://existingInternetFile.pdf", fos);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }
    protected void onPostExecute(Void resu) {
        pd.dismiss();
        Intent intent = new Intent(Intent.ACTION_VIEW);
        File file = new File(getCacheDir()+"/tempFile.pdf");
        Log.e("FILE EXISTS?",""+file.exists());
        intent.setDataAndType(Uri.fromFile(file), "application/pdf");
        intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        try {
            startActivity(intent);
        } 
        catch (ActivityNotFoundException e) {
            Toast.makeText(FilesActivity.this, 
                "No Application Available to View PDF", 
                Toast.LENGTH_SHORT).show();
        }
    }

}

虽然 Log.e("FILE EXISTS?",""+file.exists()) 说该文件存在,但它不想被我尝试使用的 8 个 pdf 阅读器中的任何一个打开。请帮助。在此先感谢

4

1 回答 1

8

那些“8 pdf 阅读器”无法访问您的缓存目录。要么将其存储在外部存储(例如,getExternalCacheDir())上,要么创建一个ContentProvider以从内部缓存目录中提供 PDF 服务。此示例项目演示了从内部存储中提供文件。

于 2013-05-25T09:38:05.677 回答