如何在Android中下载pdf文件?

如何在Android中下载pdf文件?,android,download,Android,Download,我想从url下载pdf文件。 为了查看pdf文件,我使用了下面的代码 File file = new File("/sdcard/example.pdf"); if (file.exists()) { Uri path = Uri.fromFile(file); Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(path, "application/pdf"); inten

我想从url下载pdf文件。 为了查看pdf文件,我使用了下面的代码

File file = new File("/sdcard/example.pdf");

if (file.exists()) {
    Uri path = Uri.fromFile(file);
    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setDataAndType(path, "application/pdf");
    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

    try {
        startActivity(intent);
    } 
    catch (ActivityNotFoundException e) {
        Toast.makeText(OpenPdf.this, "No Application Available to View PDF",
            Toast.LENGTH_SHORT).show();
    }
}
它正在工作,但如何从url获取pdf文件(例如
http://.../example.pdf
)。我想从这个url下载pdf文件。请帮帮我。提前感谢。

下载pdf:

 startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("www.education.gov.yk.ca/pdf/pdf-test.pdf")));
啊,正如我刚刚发现的,这取决于设备

场景

  • 它会将pdf下载到您的浏览器/下载/文件夹中

  • 你有一个谷歌文档帐户-它会要求你登录,然后在浏览器中查看pdf

  • 您已安装pdf阅读器-依赖于应用程序可能会捕获到它,但可能不会


  • 在所有情况下,尽管用户只需一行代码即可访问PDF:-)

    下载PDF的工作原理与下载任何其他二进制文件的工作原理相同

  • 使用连接的方法读取文件
  • 创建并写入inputstream

  • 查看示例源代码。

    下载文件的方法很多。下面我将发布最常见的方法;由您决定哪种方法更适合您的应用程序

    1.使用
    AsyncTask
    并在对话框中显示下载进度 此方法将允许您执行一些后台进程,同时更新UI(在本例中,我们将更新进度条)

    这是一个示例代码:

    // declare the dialog as a member field of your activity
    ProgressDialog mProgressDialog;
    
    // instantiate it within the onCreate method
    mProgressDialog = new ProgressDialog(YourActivity.this);
    mProgressDialog.setMessage("A message");
    mProgressDialog.setIndeterminate(true);
    mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
    mProgressDialog.setCancelable(true);
    
    // execute this when the downloader must be fired
    final DownloadTask downloadTask = new DownloadTask(YourActivity.this);
    downloadTask.execute("the url to the file you want to download");
    
    mProgressDialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
        @Override
        public void onCancel(DialogInterface dialog) {
            downloadTask.cancel(true);
        }
    });
    
    AsyncTask
    将如下所示:

    // usually, subclasses of AsyncTask are declared inside the activity class.
    // that way, you can easily modify the UI thread from here
    private class DownloadTask extends AsyncTask<String, Integer, String> {
    
        private Context context;
        private PowerManager.WakeLock mWakeLock;
    
        public DownloadTask(Context context) {
            this.context = context;
        }
    
        @Override
        protected String doInBackground(String... sUrl) {
            InputStream input = null;
            OutputStream output = null;
            HttpURLConnection connection = null;
            try {
                URL url = new URL(sUrl[0]);
                connection = (HttpURLConnection) url.openConnection();
                connection.connect();
    
                // expect HTTP 200 OK, so we don't mistakenly save error report
                // instead of the file
                if (connection.getResponseCode() != HttpURLConnection.HTTP_OK) {
                    return "Server returned HTTP " + connection.getResponseCode()
                            + " " + connection.getResponseMessage();
                }
    
                // this will be useful to display download percentage
                // might be -1: server did not report the length
                int fileLength = connection.getContentLength();
    
                // download the file
                input = connection.getInputStream();
                output = new FileOutputStream("/sdcard/file_name.extension");
    
                byte data[] = new byte[4096];
                long total = 0;
                int count;
                while ((count = input.read(data)) != -1) {
                    // allow canceling with back button
                    if (isCancelled()) {
                        input.close();
                        return null;
                    }
                    total += count;
                    // publishing the progress....
                    if (fileLength > 0) // only if total length is known
                        publishProgress((int) (total * 100 / fileLength));
                    output.write(data, 0, count);
                }
            } catch (Exception e) {
                return e.toString();
            } finally {
                try {
                    if (output != null)
                        output.close();
                    if (input != null)
                        input.close();
                } catch (IOException ignored) {
                }
    
                if (connection != null)
                    connection.disconnect();
            }
            return null;
        }
    
    public class DownloadService extends IntentService {
        public static final int UPDATE_PROGRESS = 8344;
        public DownloadService() {
            super("DownloadService");
        }
        @Override
        protected void onHandleIntent(Intent intent) {
            String urlToDownload = intent.getStringExtra("url");
            ResultReceiver receiver = (ResultReceiver) intent.getParcelableExtra("receiver");
            try {
                URL url = new URL(urlToDownload);
                URLConnection connection = url.openConnection();
                connection.connect();
                // this will be useful so that you can show a typical 0-100% progress bar
                int fileLength = connection.getContentLength();
    
                // download the file
                InputStream input = new BufferedInputStream(connection.getInputStream());
                OutputStream output = new FileOutputStream("/sdcard/BarcodeScanner-debug.apk");
    
                byte data[] = new byte[1024];
                long total = 0;
                int count;
                while ((count = input.read(data)) != -1) {
                    total += count;
                    // publishing the progress....
                    Bundle resultData = new Bundle();
                    resultData.putInt("progress" ,(int) (total * 100 / fileLength));
                    receiver.send(UPDATE_PROGRESS, resultData);
                    output.write(data, 0, count);
                }
    
                output.flush();
                output.close();
                input.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
    
            Bundle resultData = new Bundle();
            resultData.putInt("progress" ,100);
            receiver.send(UPDATE_PROGRESS, resultData);
        }
    }
    
    // initialize the progress dialog like in the first example
    
    // this is how you fire the downloader
    mProgressDialog.show();
    Intent intent = new Intent(this, DownloadService.class);
    intent.putExtra("url", "url of the file to download");
    intent.putExtra("receiver", new DownloadReceiver(new Handler()));
    startService(intent);
    
    String url = "url you want to download";
    DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
    request.setDescription("Some descrition");
    request.setTitle("Some title");
    // in order for this if to run, you must use the android 3.2 to compile your app
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
        request.allowScanningByMediaScanner();
        request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
    }
    request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, "name-of-the-file.ext");
    
    // get download service and enqueue file
    DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
    manager.enqueue(request);
    
    要运行此操作,您需要WAKE_LOCK权限

    <uses-permission android:name="android.permission.WAKE_LOCK" />
    
    将服务添加到您的清单:

    <service android:name=".DownloadService"/>
    
    <service android:name="com.codeslap.groundy.GroundyService"/>
    
    以下是WARE
    ResultReceiver
    即将播放的内容:

    private class DownloadReceiver extends ResultReceiver{
        public DownloadReceiver(Handler handler) {
            super(handler);
        }
    
        @Override
        protected void onReceiveResult(int resultCode, Bundle resultData) {
            super.onReceiveResult(resultCode, resultData);
            if (resultCode == DownloadService.UPDATE_PROGRESS) {
                int progress = resultData.getInt("progress");
                mProgressDialog.setProgress(progress);
                if (progress == 100) {
                    mProgressDialog.dismiss();
                }
            }
        }
    }
    
    2.1使用地下图书馆 是一个基本上帮助您在后台服务中运行代码片段的库,它基于上面显示的
    ResultReceiver
    概念。此库目前已弃用。这就是整个代码的样子:

    显示对话框的活动

    public class MainActivity extends Activity {
    
        private ProgressDialog mProgressDialog;
    
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);
    
            findViewById(R.id.btn_download).setOnClickListener(new View.OnClickListener() {
                public void onClick(View view) {
                    String url = ((EditText) findViewById(R.id.edit_url)).getText().toString().trim();
                    Bundle extras = new Bundler().add(DownloadTask.PARAM_URL, url).build();
                    Groundy.create(DownloadExample.this, DownloadTask.class)
                            .receiver(mReceiver)
                            .params(extras)
                            .queue();
    
                    mProgressDialog = new ProgressDialog(MainActivity.this);
                    mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
                    mProgressDialog.setCancelable(false);
                    mProgressDialog.show();
                }
            });
        }
    
        private ResultReceiver mReceiver = new ResultReceiver(new Handler()) {
            @Override
            protected void onReceiveResult(int resultCode, Bundle resultData) {
                super.onReceiveResult(resultCode, resultData);
                switch (resultCode) {
                    case Groundy.STATUS_PROGRESS:
                        mProgressDialog.setProgress(resultData.getInt(Groundy.KEY_PROGRESS));
                        break;
                    case Groundy.STATUS_FINISHED:
                        Toast.makeText(DownloadExample.this, R.string.file_downloaded, Toast.LENGTH_LONG);
                        mProgressDialog.dismiss();
                        break;
                    case Groundy.STATUS_ERROR:
                        Toast.makeText(DownloadExample.this, resultData.getString(Groundy.KEY_ERROR), Toast.LENGTH_LONG).show();
                        mProgressDialog.dismiss();
                        break;
                }
            }
        };
    }
    
    Groundy任务
    实现,由Groundy下载文件并显示进度:

    public class DownloadTask extends GroundyTask {    
        public static final String PARAM_URL = "com.groundy.sample.param.url";
    
        @Override
        protected boolean doInBackground() {
            try {
                String url = getParameters().getString(PARAM_URL);
                File dest = new File(getContext().getFilesDir(), new File(url).getName());
                DownloadUtils.downloadFile(getContext(), url, dest, DownloadUtils.getDownloadListenerForTask(this));
                return true;
            } catch (Exception pokemon) {
                return false;
            }
        }
    }
    
    只需将其添加到清单中:

    <service android:name=".DownloadService"/>
    
    <service android:name="com.codeslap.groundy.GroundyService"/>
    
    方法的名称解释了这一切。一旦确定
    DownloadManager
    可用,您可以执行以下操作:

    // usually, subclasses of AsyncTask are declared inside the activity class.
    // that way, you can easily modify the UI thread from here
    private class DownloadTask extends AsyncTask<String, Integer, String> {
    
        private Context context;
        private PowerManager.WakeLock mWakeLock;
    
        public DownloadTask(Context context) {
            this.context = context;
        }
    
        @Override
        protected String doInBackground(String... sUrl) {
            InputStream input = null;
            OutputStream output = null;
            HttpURLConnection connection = null;
            try {
                URL url = new URL(sUrl[0]);
                connection = (HttpURLConnection) url.openConnection();
                connection.connect();
    
                // expect HTTP 200 OK, so we don't mistakenly save error report
                // instead of the file
                if (connection.getResponseCode() != HttpURLConnection.HTTP_OK) {
                    return "Server returned HTTP " + connection.getResponseCode()
                            + " " + connection.getResponseMessage();
                }
    
                // this will be useful to display download percentage
                // might be -1: server did not report the length
                int fileLength = connection.getContentLength();
    
                // download the file
                input = connection.getInputStream();
                output = new FileOutputStream("/sdcard/file_name.extension");
    
                byte data[] = new byte[4096];
                long total = 0;
                int count;
                while ((count = input.read(data)) != -1) {
                    // allow canceling with back button
                    if (isCancelled()) {
                        input.close();
                        return null;
                    }
                    total += count;
                    // publishing the progress....
                    if (fileLength > 0) // only if total length is known
                        publishProgress((int) (total * 100 / fileLength));
                    output.write(data, 0, count);
                }
            } catch (Exception e) {
                return e.toString();
            } finally {
                try {
                    if (output != null)
                        output.close();
                    if (input != null)
                        input.close();
                } catch (IOException ignored) {
                }
    
                if (connection != null)
                    connection.disconnect();
            }
            return null;
        }
    
    public class DownloadService extends IntentService {
        public static final int UPDATE_PROGRESS = 8344;
        public DownloadService() {
            super("DownloadService");
        }
        @Override
        protected void onHandleIntent(Intent intent) {
            String urlToDownload = intent.getStringExtra("url");
            ResultReceiver receiver = (ResultReceiver) intent.getParcelableExtra("receiver");
            try {
                URL url = new URL(urlToDownload);
                URLConnection connection = url.openConnection();
                connection.connect();
                // this will be useful so that you can show a typical 0-100% progress bar
                int fileLength = connection.getContentLength();
    
                // download the file
                InputStream input = new BufferedInputStream(connection.getInputStream());
                OutputStream output = new FileOutputStream("/sdcard/BarcodeScanner-debug.apk");
    
                byte data[] = new byte[1024];
                long total = 0;
                int count;
                while ((count = input.read(data)) != -1) {
                    total += count;
                    // publishing the progress....
                    Bundle resultData = new Bundle();
                    resultData.putInt("progress" ,(int) (total * 100 / fileLength));
                    receiver.send(UPDATE_PROGRESS, resultData);
                    output.write(data, 0, count);
                }
    
                output.flush();
                output.close();
                input.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
    
            Bundle resultData = new Bundle();
            resultData.putInt("progress" ,100);
            receiver.send(UPDATE_PROGRESS, resultData);
        }
    }
    
    // initialize the progress dialog like in the first example
    
    // this is how you fire the downloader
    mProgressDialog.show();
    Intent intent = new Intent(this, DownloadService.class);
    intent.putExtra("url", "url of the file to download");
    intent.putExtra("receiver", new DownloadReceiver(new Handler()));
    startService(intent);
    
    String url = "url you want to download";
    DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
    request.setDescription("Some descrition");
    request.setTitle("Some title");
    // in order for this if to run, you must use the android 3.2 to compile your app
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
        request.allowScanningByMediaScanner();
        request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
    }
    request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, "name-of-the-file.ext");
    
    // get download service and enqueue file
    DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
    manager.enqueue(request);
    
    下载进度将显示在通知栏中

    最后的想法 第一种和第二种方法只是冰山一角。如果你想让你的应用程序变得健壮,你必须记住很多事情。以下是一份简要清单:

    • 您必须检查用户是否有可用的internet连接
    • 确保您拥有正确的权限(
      互联网
      写入外部存储
      );如果要检查internet可用性,请访问网络状态
    • 确保要下载文件的目录存在并具有写入权限
    • 如果下载量过大,您可能希望实现一种方法,以便在以前的尝试失败时恢复下载
    • 如果您允许用户中断下载,用户将不胜感激

    除非你需要对下载过程进行详细的控制,然后考虑使用<代码>下载管理器< /C>(3),因为它已经处理了上面列出的大部分项目。


    但也要考虑到你的需求可能会改变。例如,
    DownloadManager
    。它会多次盲目下载同一个大文件。事后没有简单的办法解决它。如果从基本的
    HttpURLConnection
    (1,2)开始,那么只需添加一个
    HttpResponseCache
    。因此,学习基本的、标准的工具的最初努力可能是一项很好的投资。

    在android中打开和下载pdf不需要太长的代码,您只需使用下面的代码即可打开和下载pdf

    String URL ="http://worldhappiness.report/wp-content/uploads/sites/2/2016/03/HR-V1_web.pdf"
    
     startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse(URL)));
    

    但在Blundell的回答中,如果手机上没有pdf,则不会下载该文件。但我想从url下载pdf文件,然后pdf将显示在webview中。这对我来说是正确的答案。有没有插件可以做到这一点?听起来像是一般的东西这很好,但我尝试过在我的catch中插入一个
    try/catch
    短语是
    ActivityNotFoundException
    ,但即使我周围没有任何PDF查看器,它也不会被触发。我只想下载一个PDF查看器,如果没有,则触发
    catch
    短语。你建议我怎么做?用你的代码打开一个新的堆栈溢出问题,并链接到此answer@Blundell我用MP4 url尝试了同样的方法,但它在Google Chrome中打开了视频,而不是开始下载。有什么帮助吗?这个设备是如何依赖的?你是什么意思?这意味着场景1、2或3都可能发生公共静态布尔值isDownloadManagerAvailable(){return Build.VERSION.SDK\u INT>=Build.VERSION\u CODES.gingerbrand;}谢谢你的回答节省时间,顺便说一句,如果我使用AsyncTask,我仍然应该添加关于存储的权限,否则我将不下载任何内容。当我尝试使用Rxjava2而不是AsyncTask时,它无法正常工作。我试图下载一个小的pdf文件。这基本上和一个相同的答案。。。你有什么可以让自己与众不同的地方吗?