当我通过 intent 打开 PDF 时无法在 Android 中显示 PDF(无法打开)
Cannot display PDF (cannot be open) in Android when I open PDF through intent
我正在通过 url 下载 PDF,保存后我通过 intent 打开它。但它说无法显示 PDF(无法打开)。我也授予了所有读写权限。 PDF 保存成功,我也可以在我的文件管理器中看到,我可以从那里打开它。但不是来自我的应用程序。
使用代码=>
private void downloadAndViewAttachment(String url) {
String extension = url.substring(url.lastIndexOf("."));
Log.v("extension", extension);
fileName = url.substring(url.lastIndexOf("/"));
fileName = fileName.replace("/", "");
Log.v("fileName", fileName);
final File file = new File(Environment.getExternalStoragePublicDirectory(getString(R.string.app_name)), AppConstants.Attachments);
AndroidNetworking.download(url, file.getPath(), AppUtils.getTimeStamp() + "_" + fileName)
.setPriority(Priority.HIGH)
.build()
.setDownloadProgressListener(new DownloadProgressListener() {
@Override
public void onProgress(long bytesDownloaded, long totalBytes) {
AppUtils.showRequestDialog(mActivity);
}
})
.startDownload(new DownloadListener() {
@Override
public void onDownloadComplete() {
AppUtils.hideDialog(mActivity);
AppUtils.showToastSort(mActivity, getString(R.string.download_succesfully));
openPdfFile(file.getPath() + "/" + AppUtils.getTimeStamp() + "_" + fileName);
}
@Override
public void onError(ANError anError) {
AppUtils.hideDialog(mActivity);
Log.v("downloadError", anError.getErrorBody());
Log.v("downloadError", anError.getErrorDetail());
Log.v("downloadError", String.valueOf(anError.getErrorCode()));
AppUtils.showToastSort(mActivity, getString(R.string.something_error));
}
});
}
private void openPdfFile(String path) {
AppUtils.hideDialog(mActivity);
File file = new File(path);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(intent);
}
如果函数 AppUtils.getTimeStamp()
确实在执行,您将在 onDownloadComplete
中获得不同的时间戳。尝试将文件名保存在局部变量中并重新使用它:
private void downloadAndViewAttachment(String url) {
String extension = url.substring(url.lastIndexOf("."));
Log.v("extension", extension);
fileName = url.substring(url.lastIndexOf("/"));
fileName = fileName.replace("/", "");
Log.v("fileName", fileName);
final File file = new File(Environment.getExternalStoragePublicDirectory(getString(R.string.app_name)), AppConstants.Attachments);
// Save complete Filename in variable.
final String fullFilename = AppUtils.getTimeStamp() + "_" + fileName;
AndroidNetworking.download(url, file.getPath(), fullFilename)
.setPriority(Priority.HIGH)
.build()
.setDownloadProgressListener(new DownloadProgressListener() {
@Override
public void onProgress(long bytesDownloaded, long totalBytes) {
AppUtils.showRequestDialog(mActivity);
}
})
.startDownload(new DownloadListener() {
@Override
public void onDownloadComplete() {
AppUtils.hideDialog(mActivity);
AppUtils.showToastSort(mActivity, getString(R.string.download_succesfully));
// Reuse variabel.
openPdfFile(file.getPath() + "/" + fullFilename);
}
@Override
public void onError(ANError anError) {
AppUtils.hideDialog(mActivity);
Log.v("downloadError", anError.getErrorBody());
Log.v("downloadError", anError.getErrorDetail());
Log.v("downloadError", String.valueOf(anError.getErrorCode()));
AppUtils.showToastSort(mActivity, getString(R.string.something_error));
}
});
}
我正在通过 url 下载 PDF,保存后我通过 intent 打开它。但它说无法显示 PDF(无法打开)。我也授予了所有读写权限。 PDF 保存成功,我也可以在我的文件管理器中看到,我可以从那里打开它。但不是来自我的应用程序。
使用代码=>
private void downloadAndViewAttachment(String url) {
String extension = url.substring(url.lastIndexOf("."));
Log.v("extension", extension);
fileName = url.substring(url.lastIndexOf("/"));
fileName = fileName.replace("/", "");
Log.v("fileName", fileName);
final File file = new File(Environment.getExternalStoragePublicDirectory(getString(R.string.app_name)), AppConstants.Attachments);
AndroidNetworking.download(url, file.getPath(), AppUtils.getTimeStamp() + "_" + fileName)
.setPriority(Priority.HIGH)
.build()
.setDownloadProgressListener(new DownloadProgressListener() {
@Override
public void onProgress(long bytesDownloaded, long totalBytes) {
AppUtils.showRequestDialog(mActivity);
}
})
.startDownload(new DownloadListener() {
@Override
public void onDownloadComplete() {
AppUtils.hideDialog(mActivity);
AppUtils.showToastSort(mActivity, getString(R.string.download_succesfully));
openPdfFile(file.getPath() + "/" + AppUtils.getTimeStamp() + "_" + fileName);
}
@Override
public void onError(ANError anError) {
AppUtils.hideDialog(mActivity);
Log.v("downloadError", anError.getErrorBody());
Log.v("downloadError", anError.getErrorDetail());
Log.v("downloadError", String.valueOf(anError.getErrorCode()));
AppUtils.showToastSort(mActivity, getString(R.string.something_error));
}
});
}
private void openPdfFile(String path) {
AppUtils.hideDialog(mActivity);
File file = new File(path);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(intent);
}
如果函数 AppUtils.getTimeStamp()
确实在执行,您将在 onDownloadComplete
中获得不同的时间戳。尝试将文件名保存在局部变量中并重新使用它:
private void downloadAndViewAttachment(String url) {
String extension = url.substring(url.lastIndexOf("."));
Log.v("extension", extension);
fileName = url.substring(url.lastIndexOf("/"));
fileName = fileName.replace("/", "");
Log.v("fileName", fileName);
final File file = new File(Environment.getExternalStoragePublicDirectory(getString(R.string.app_name)), AppConstants.Attachments);
// Save complete Filename in variable.
final String fullFilename = AppUtils.getTimeStamp() + "_" + fileName;
AndroidNetworking.download(url, file.getPath(), fullFilename)
.setPriority(Priority.HIGH)
.build()
.setDownloadProgressListener(new DownloadProgressListener() {
@Override
public void onProgress(long bytesDownloaded, long totalBytes) {
AppUtils.showRequestDialog(mActivity);
}
})
.startDownload(new DownloadListener() {
@Override
public void onDownloadComplete() {
AppUtils.hideDialog(mActivity);
AppUtils.showToastSort(mActivity, getString(R.string.download_succesfully));
// Reuse variabel.
openPdfFile(file.getPath() + "/" + fullFilename);
}
@Override
public void onError(ANError anError) {
AppUtils.hideDialog(mActivity);
Log.v("downloadError", anError.getErrorBody());
Log.v("downloadError", anError.getErrorDetail());
Log.v("downloadError", String.valueOf(anError.getErrorCode()));
AppUtils.showToastSort(mActivity, getString(R.string.something_error));
}
});
}