我很难在adobe上阅读我的pdf。我有文件查看器似乎已经安装在我的手机上之前我买了它(我认为这是一个默认的Android应用程序)。有了它,我的代码工作正常。 但我看到了崩溃,可能是没有文档查看器的人。
所以我用adobe reader测试了我的代码,它崩溃了!
有人可以解释我的代码有什么问题(和/或)给我Gplay链接让我的用户下载它。
public Intent readPdf(String name, int res) {
final String extStorageDirectory = Environment
.getExternalStorageDirectory().toString();
final String festivalDirectory_path = extStorageDirectory
+ Constants.PDF_STORAGE_PATH;
File pdfOutputFile = new File(festivalDirectory_path, "/");
if (pdfOutputFile.exists() == false) {
pdfOutputFile.mkdirs();
}
File pdfFile = new File(pdfOutputFile, name);
// AssetManager assetManager = getAssets();
InputStream in = null;
try {
// InputStream in = assetManager
// .open("cartecannesplus01pdf.pdf");
in = getResources().openRawResource(res);
OutputStream out = new FileOutputStream(pdfFile);
byte[] buffer = new byte[1024];
int bufferLength = 0;
while ((bufferLength = in.read(buffer)) > 0) {
out.write(buffer, 0, bufferLength);
}
out.flush();
out.close();
} catch (Exception e) {
Log.e("tag", e.getMessage());
}
Uri path = Uri.fromFile(pdfFile);
Intent intent = null;
if (Utils.appInstalledOrNot(me, "com.adobe.reader")) {
intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
} else {
intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.adobe.reader"));
}
return intent;
}
谢谢!
雷诺
答案 0 :(得分:1)
我发现了这个问题: 参数中的名称必须以.pdf
结尾如果没有,adobe阅读器无法读取pdf,因为它与我尝试过的所有其他pdf阅读器一起使用!
谢谢大家!