繁体   English   中英

打开使用Android下载管理器下载的文件

[英]Open a file downloaded using download manager Android

我已使用此代码在我的应用程序中下载pdf文件,并且适用于所有手机,但是我编写的打开下载文件的代码适用于APK小于21的APK,但不适用于三星S7等更好的手机。

我下载pdf文件的代码:

Boolean memoerAvailable = (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED));
if (memoerAvailable) {
  final DownloadManager.Request request = new DownloadManager.Request(Uri.parse(link));
  request.setTitle("Click to download the book");
  request.setDescription("File is being downloaded...");

  //use download manager to download the clicked book
  request.allowScanningByMediaScanner();
  request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
  request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, ShowbooksActivity.myBooksList.get(ShowbooksActivity.pos).getMpdfName());
  request.setDestinationInExternalFilesDir(bookWithAdapterActivity.this, Environment.DIRECTORY_DOWNLOADS, "myfile.jpg");
  final DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
  final long queueid = manager.enqueue(request);

我打开下载文件的代码:

filetoopen = ls1.get(position);
File file = new File(Environment.getExternalStorageDirectory() +"/Download/" + filetoopen);
intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
try {
  startActivity(intent);
} catch (ActivityNotFoundException e) {
  Toast.makeText(getContext(), "File not found", Toast.LENGTH_SHORT).show();

}

你有一个exeption? 尝试对File> 23使用FileProvier。

使用FileProvider在Android N上打开下载的文件

试试这个

setDownloadListener(new DownloadListener() {
        @Override
        public void onDownloadStart(String url, String userAgent,
                                    String contentDisposition, String mimeType,
                                    long contentLength) {
            DownloadManager.Request request = new DownloadManager.Request(
                    Uri.parse(url));
            request.setMimeType(mimeType);
            String cookies = CookieManager.getInstance().getCookie(url);
            request.addRequestHeader("cookie", cookies);
            request.addRequestHeader("User-Agent", userAgent);
            request.setDescription("Downloading file...");
            request.setTitle(URLUtil.guessFileName(url, contentDisposition,
                    mimeType));
            request.allowScanningByMediaScanner();
            request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
            request.setDestinationInExternalPublicDir(
                    Environment.DIRECTORY_DOWNLOADS, URLUtil.guessFileName(
                            url, contentDisposition, mimeType));
            DownloadManager dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
            dm.enqueue(request);
            Toast.makeText(getApplicationContext(), "Downloading File",
                    Toast.LENGTH_LONG).show();
        }
    });

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM