web-dev-qa-db-ja.com

AndroidでPDFファイルをダウンロードする方法は?

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ファイルを作成します。私を助けてください。前もって感謝します。

19
Ramakrishna

PDFのダウンロードは、他のバイナリファイルのダウンロードと同じように機能します。

  1. HttpUrlConnection を開きます
  2. 接続の getInputStream() メソッドを使用して、ファイルを読み取ります。
  3. FileOutputStream を作成し、入力ストリームを書き込みます。

this post をチェックしてください(例:ソースコード)。

9
THelper

PDFをダウンロードします。

 startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("www.education.gov.yk.ca/pdf/pdf-test.pdf")));

ああ、これはデバイスに依存していることがわかりました。

シナリオ

  1. Pdfをbrowser/downloaded /フォルダーにダウンロードします

  2. Googleドキュメントアカウントを持っている-ログインするように求められ、ブラウザでPDFを表示します

  3. PDFリーダーがインストールされています-アプリに依存すると、キャッチされない場合があります

ただし、すべてのシナリオで、ユーザーはPDFに1行のコードでアクセスできます:-)

20
Blundell

ファイルをダウンロードするには多くの方法があります。次に、最も一般的な方法を投稿します。アプリに適した方法を決定するのはあなた次第です。

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;
    }

上記のメソッド(doInBackground)は、常にバックグラウンドスレッドで実行されます。そこでUIタスクを実行しないでください。一方、onProgressUpdateonPreExecuteはUIスレッドで実行されるため、進捗バーを変更できます。

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        // take CPU lock to prevent CPU from going off if the user 
        // presses the power button during download
        PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
        mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
             getClass().getName());
        mWakeLock.acquire();
        mProgressDialog.show();
    }

    @Override
    protected void onProgressUpdate(Integer... progress) {
        super.onProgressUpdate(progress);
        // if we get here, length is known, now set indeterminate to false
        mProgressDialog.setIndeterminate(false);
        mProgressDialog.setMax(100);
        mProgressDialog.setProgress(progress[0]);
    }

    @Override
    protected void onPostExecute(String result) {
        mWakeLock.release();
        mProgressDialog.dismiss();
        if (result != null)
            Toast.makeText(context,"Download error: "+result, Toast.LENGTH_LONG).show();
        else
            Toast.makeText(context,"File downloaded", Toast.LENGTH_SHORT).show();
    }

これを実行するには、WAKE_LOCK権限が必要です。

<uses-permission Android:name="Android.permission.WAKE_LOCK" />

2.サービスからダウンロード

ここでの大きな質問は、サービスからアクティビティを更新するにはどうすればよいですか?。次の例では、気づかないかもしれない2つのクラスResultReceiverIntentServiceを使用します。 ResultReceiverは、サービスからスレッドを更新できるようにするものです。 IntentServiceServiceのサブクラスであり、そこからスレッドを生成してそこからバックグラウンド作業を行います(Serviceが実際にアプリの同じスレッドで実行されることを知っておく必要があります。 Serviceを拡張する場合、CPUブロッキング操作を実行するには、新しいスレッドを手動で生成する必要があります)。

ダウンロードサービスは次のようになります。

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);
    }
}

サービスをマニフェストに追加します。

<service Android:name=".DownloadService"/>

そして、アクティビティは次のようになります。

// 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);

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 Groundyライブラリを使用する

Groundy は、基本的にバックグラウンドサービスでコードを実行するのに役立つライブラリであり、ResultReceiver上記の概念。このライブラリは、現時点では推奨されていません。これはwholeコードがどのように見えるかです:

ダイアログを表示しているアクティビティ...

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が使用するGroundyTask実装は、ファイルをダウンロードして進行状況を表示します。

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="com.codeslap.groundy.GroundyService"/>

簡単だと思います。最新のjarを取得するだけです Githubから で準備完了です。 Groundyの主な目的は、外部のREST APIをバックグラウンドサービスおよび投稿で呼び出すことです。アプリでそのようなことをしているなら、それは本当に便利かもしれません。

2.2使用 https://github.com/koush/ion

3. DownloadManagerクラスを使用します(Gingerbread以降のみ)

GingerbreadにはDownloadManagerという新機能が追加されました。これにより、ファイルを簡単にダウンロードし、スレッド、ストリームなどのハードワークをシステムに委任できます。

まず、ユーティリティメソッドを見てみましょう。

/**
 * @param context used to check the device version and DownloadManager information
 * @return true if the download manager is available
 */
public static boolean isDownloadManagerAvailable(Context context) {

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Gingerbread) {
        return true;
    }
    return false;
}

メソッドの名前がす​​べてを説明しています。 DownloadManagerが使用可能になったら、次のようなことができます。

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);

ダウンロードの進行状況は通知バーに表示されます。

最終的な考え

最初と2番目の方法は、氷山の一角にすぎません。アプリを堅牢にしたい場合は、注意しなければならないことがたくさんあります。以下に簡単なリストを示します。

  • ユーザーがインターネットに接続できるかどうかを確認する必要があります
  • 適切な権限(INTERNETおよびWRITE_EXTERNAL_STORAGE); ACCESS_NETWORK_STATEインターネットの可用性を確認する場合。
  • ファイルをダウンロードするディレクトリが存在し、書き込み権限があることを確認してください。
  • ダウンロードが大きすぎる場合は、以前の試行が失敗した場合にダウンロードを再開する方法を実装できます。
  • ダウンロードの中断を許可すると、ユーザーに感謝します。

ダウンロードプロセスを詳細に制御する必要がない限り、DownloadManager(3)の使用を検討してください。これは、上記のほとんどのアイテムを既に処理しているためです。

ただし、ニーズが変わる可能性があることも考慮してください。たとえば、DownloadManager応答キャッシュを行いません 。盲目的に同じ大きなファイルを複数回ダウンロードします。事後にそれを修正する簡単な方法はありません。基本的なHttpURLConnection(1、2)で開始する場合、必要なのはHttpResponseCacheを追加することだけです。したがって、基本的な標準ツールを習得する最初の努力は、大きな投資となります。

9
Arpit Patel

PDFを開いてダウンロードするために長いコードを置く必要はありませんAndroid

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)));
1
DEEP ADHIYA
public static class Downloader {

 public static void DownloadFile(String fileURL, File directory) {
    try {
         FileOutputStream file = new FileOutputStream(directory);
         URL url = new URL(fileURL);
        HttpURLConnection connection = (HttpURLConnection) url .openConnection();
         connection .setRequestMethod("GET");
         connection .setDoOutput(true);
         connection .connect();
         InputStream input = connection .getInputStream();
         byte[] buffer = new byte[1024];
         int len = 0;
          while ((len = input .read(buffer)) > 0) {
           file .write(buffer, 0, len );
         }
        file .close();
  } catch (Exception e) {
          e.printStackTrace();
   }
}

詳細については、ここをクリックしてください http://androiddhina.blogspot.in/2015/09/how-to-download-pdf-from-url-in-Android.html

0
Dhina k