lost baby
lost baby

Reputation: 3268

how to: download and open a pdf file programmatically via http connection

how to: download (via an http connection) and open or save a pdf file programmatically.

Say I have a button on my screen and the url to the pdf, when the button is clicked I want to download the pdf from the url and have the user presented with the choice to open or save the file. There must be a standard way to do something so commonplace, should I open the browser to the url or can I do this from my app?

Upvotes: 3

Views: 9591

Answers (1)

Marmoy
Marmoy

Reputation: 8079

Like this:

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("*url for your pdf*"));
startActivity(browserIntent);

This will cause the pdf to be downloaded in the notification bar, as if you had initiated the download through the browser.

Check this question if you have problems: How can I open a URL in Android's web browser from my application?

Upvotes: 7

Related Questions