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のダウンロードは、他のバイナリファイルのダウンロードと同じように機能します。
HttpUrlConnection
を開きますgetInputStream()
メソッドを使用して、ファイルを読み取ります。FileOutputStream
を作成し、入力ストリームを書き込みます。this post をチェックしてください(例:ソースコード)。
PDFをダウンロードします。
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("www.education.gov.yk.ca/pdf/pdf-test.pdf")));
ああ、これはデバイスに依存していることがわかりました。
シナリオ
Pdfをbrowser/downloaded /フォルダーにダウンロードします
Googleドキュメントアカウントを持っている-ログインするように求められ、ブラウザでPDFを表示します
PDFリーダーがインストールされています-アプリに依存すると、キャッチされない場合があります
ただし、すべてのシナリオで、ユーザーはPDFに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タスクを実行しないでください。一方、onProgressUpdate
とonPreExecute
は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つのクラスResultReceiver
とIntentService
を使用します。 ResultReceiver
は、サービスからスレッドを更新できるようにするものです。 IntentService
はService
のサブクラスであり、そこからスレッドを生成してそこからバックグラウンド作業を行います(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();
}
}
}
}
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をバックグラウンドサービスおよび投稿で呼び出すことです。アプリでそのようなことをしているなら、それは本当に便利かもしれません。
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
を追加することだけです。したがって、基本的な標準ツールを習得する最初の努力は、大きな投資となります。
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)));
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