AndroidでHTTPClientを使用して、インターネットから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();
}
}
次のクラスはアクティビティです。新しいインテントを作成し、インストールされたソフトウェアを使用して pdf ファイルを開きます (使用するソフトウェアはユーザーが決定します)。このアクティビティは、Parser.class と AsyncTask の上位メソッドを使用して 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リーダーのいずれかで開きたくありません。助けてください。よろしくお願いします