Implementing a download servlet for iPadImplementing a simple file download servletHow to force browser to download file?javascript window.open not working in safari and chrome“implements Runnable” vs “extends Thread” in JavaWhat is the difference between JSF, Servlet and JSP?How to upload files to server using JSP/Servlet?Download a file with Android, and showing the progress in a ProgressDialogHow do servlets work? Instantiation, sessions, shared variables and multithreadingDownload a single folder or directory from a GitHub repoJava Servlet for file download: Works when started from form submit, not when started from jQuery downloadTrigger the click event of anchor <a> having the download attributeWhy does href change after downloading pagefile upload and download with servlet
Metal that glows when near pieces of itself
Quick destruction of a helium filled airship?
Levenshtein Neighbours
How do you call it when two celestial bodies come as close to each other as they will in their current orbits?
Starships without computers?
Earliest evidence of objects intended for future archaeologists?
Build a mob of suspiciously happy lenny faces ( ͡° ͜ʖ ͡°)
Are unaudited server logs admissible in a court of law?
Are there any OR challenges that are similar to kaggle's competitions?
Does git delete empty folders?
How to use source_location in a variadic template function?
Reducing contention in thread-safe LruCache
What is the evidence on the danger of feeding whole blueberries and grapes to infants and toddlers?
Why is the name Bergson pronounced like Berksonne?
How do neutron star binaries form?
Output with the same length always
My new Acer Aspire 7 doesn't have a Legacy Boot option, what can I do to get it?
Would it be illegal for Facebook to actively promote a political agenda?
Inset Square From a Rectangular Face
How best to join tables, which have different lengths on the same column values which exist in both tables?
Why should P.I be willing to write strong LOR even if that means losing a undergraduate from his/her lab?
What is "super" in superphosphate?
Radix2 Fast Fourier Transform implemented in C++
Is "stainless" a bulk or a surface property of stainless steel?
Implementing a download servlet for iPad
Implementing a simple file download servletHow to force browser to download file?javascript window.open not working in safari and chrome“implements Runnable” vs “extends Thread” in JavaWhat is the difference between JSF, Servlet and JSP?How to upload files to server using JSP/Servlet?Download a file with Android, and showing the progress in a ProgressDialogHow do servlets work? Instantiation, sessions, shared variables and multithreadingDownload a single folder or directory from a GitHub repoJava Servlet for file download: Works when started from form submit, not when started from jQuery downloadTrigger the click event of anchor <a> having the download attributeWhy does href change after downloading pagefile upload and download with servlet
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have implemented a downloader servlet using java as stated:
Implementing a simple file download servlet
The requirement is, on the browser side, the file should be automatically downloaded, not triggered by any anchor click. On the ajax response, I call
document.location = "downloadServlet?fileId=foo"
The problem is, it works fine for all desktop browsers, android mobile devices.
But when the device is a iPad tablet, both chrome and safari do not download the file, for example if the file is a text file, the content is dumped to the page and my working page is lost. How can I force that the file is downloaded and not the content is shown? Even if trying a zip file for example, then the browser of tablet shows a different page and corrupts the working page. What I want is the browser downloads it as if performed SaveAs for all types of files.
Because the document.location changes the whole page on the iPad, I changed it to an anchor, but because it should be triggered automatically, I trigger the click event by
<a href="downloadServlet?.." target="_blank" rel="noopener" id="downloadAnchor" />
document.getElementById("downloadAnchor").click()
But then the popup blockers prevent the click event.
javascript java servlets download anchor
add a comment |
I have implemented a downloader servlet using java as stated:
Implementing a simple file download servlet
The requirement is, on the browser side, the file should be automatically downloaded, not triggered by any anchor click. On the ajax response, I call
document.location = "downloadServlet?fileId=foo"
The problem is, it works fine for all desktop browsers, android mobile devices.
But when the device is a iPad tablet, both chrome and safari do not download the file, for example if the file is a text file, the content is dumped to the page and my working page is lost. How can I force that the file is downloaded and not the content is shown? Even if trying a zip file for example, then the browser of tablet shows a different page and corrupts the working page. What I want is the browser downloads it as if performed SaveAs for all types of files.
Because the document.location changes the whole page on the iPad, I changed it to an anchor, but because it should be triggered automatically, I trigger the click event by
<a href="downloadServlet?.." target="_blank" rel="noopener" id="downloadAnchor" />
document.getElementById("downloadAnchor").click()
But then the popup blockers prevent the click event.
javascript java servlets download anchor
1
In your servlet, try setting the response header Content-Disposition: attachment; filename=myfilename.myext
– Palamino
Mar 27 at 17:16
Hi, I already added that but not working for iPad even if setting the disposition to attachment, when you download a text file its content is directly put to the initial page
– benchpresser
Mar 28 at 9:11
I tried all options stackoverflow.com/questions/6520231/… but ipad+safari always opens the content on the current tab. Opening a new tab/window is not possible due popup blocking mechanism of safari. stackoverflow.com/questions/44180931/… does not help because the file is generated dynamically and we are not sure that we will download a file when clicking the link (business rule)
– benchpresser
Mar 28 at 15:37
1
Try setting the content-type response header as application/octet-stream mime type
– Palamino
Mar 28 at 15:47
ı tried application/octet-stream, force-download, x-download but ipad always shows in the same page without saveas.
– benchpresser
Mar 29 at 6:24
add a comment |
I have implemented a downloader servlet using java as stated:
Implementing a simple file download servlet
The requirement is, on the browser side, the file should be automatically downloaded, not triggered by any anchor click. On the ajax response, I call
document.location = "downloadServlet?fileId=foo"
The problem is, it works fine for all desktop browsers, android mobile devices.
But when the device is a iPad tablet, both chrome and safari do not download the file, for example if the file is a text file, the content is dumped to the page and my working page is lost. How can I force that the file is downloaded and not the content is shown? Even if trying a zip file for example, then the browser of tablet shows a different page and corrupts the working page. What I want is the browser downloads it as if performed SaveAs for all types of files.
Because the document.location changes the whole page on the iPad, I changed it to an anchor, but because it should be triggered automatically, I trigger the click event by
<a href="downloadServlet?.." target="_blank" rel="noopener" id="downloadAnchor" />
document.getElementById("downloadAnchor").click()
But then the popup blockers prevent the click event.
javascript java servlets download anchor
I have implemented a downloader servlet using java as stated:
Implementing a simple file download servlet
The requirement is, on the browser side, the file should be automatically downloaded, not triggered by any anchor click. On the ajax response, I call
document.location = "downloadServlet?fileId=foo"
The problem is, it works fine for all desktop browsers, android mobile devices.
But when the device is a iPad tablet, both chrome and safari do not download the file, for example if the file is a text file, the content is dumped to the page and my working page is lost. How can I force that the file is downloaded and not the content is shown? Even if trying a zip file for example, then the browser of tablet shows a different page and corrupts the working page. What I want is the browser downloads it as if performed SaveAs for all types of files.
Because the document.location changes the whole page on the iPad, I changed it to an anchor, but because it should be triggered automatically, I trigger the click event by
<a href="downloadServlet?.." target="_blank" rel="noopener" id="downloadAnchor" />
document.getElementById("downloadAnchor").click()
But then the popup blockers prevent the click event.
javascript java servlets download anchor
javascript java servlets download anchor
asked Mar 27 at 13:36
benchpresserbenchpresser
8651 gold badge7 silver badges25 bronze badges
8651 gold badge7 silver badges25 bronze badges
1
In your servlet, try setting the response header Content-Disposition: attachment; filename=myfilename.myext
– Palamino
Mar 27 at 17:16
Hi, I already added that but not working for iPad even if setting the disposition to attachment, when you download a text file its content is directly put to the initial page
– benchpresser
Mar 28 at 9:11
I tried all options stackoverflow.com/questions/6520231/… but ipad+safari always opens the content on the current tab. Opening a new tab/window is not possible due popup blocking mechanism of safari. stackoverflow.com/questions/44180931/… does not help because the file is generated dynamically and we are not sure that we will download a file when clicking the link (business rule)
– benchpresser
Mar 28 at 15:37
1
Try setting the content-type response header as application/octet-stream mime type
– Palamino
Mar 28 at 15:47
ı tried application/octet-stream, force-download, x-download but ipad always shows in the same page without saveas.
– benchpresser
Mar 29 at 6:24
add a comment |
1
In your servlet, try setting the response header Content-Disposition: attachment; filename=myfilename.myext
– Palamino
Mar 27 at 17:16
Hi, I already added that but not working for iPad even if setting the disposition to attachment, when you download a text file its content is directly put to the initial page
– benchpresser
Mar 28 at 9:11
I tried all options stackoverflow.com/questions/6520231/… but ipad+safari always opens the content on the current tab. Opening a new tab/window is not possible due popup blocking mechanism of safari. stackoverflow.com/questions/44180931/… does not help because the file is generated dynamically and we are not sure that we will download a file when clicking the link (business rule)
– benchpresser
Mar 28 at 15:37
1
Try setting the content-type response header as application/octet-stream mime type
– Palamino
Mar 28 at 15:47
ı tried application/octet-stream, force-download, x-download but ipad always shows in the same page without saveas.
– benchpresser
Mar 29 at 6:24
1
1
In your servlet, try setting the response header Content-Disposition: attachment; filename=myfilename.myext
– Palamino
Mar 27 at 17:16
In your servlet, try setting the response header Content-Disposition: attachment; filename=myfilename.myext
– Palamino
Mar 27 at 17:16
Hi, I already added that but not working for iPad even if setting the disposition to attachment, when you download a text file its content is directly put to the initial page
– benchpresser
Mar 28 at 9:11
Hi, I already added that but not working for iPad even if setting the disposition to attachment, when you download a text file its content is directly put to the initial page
– benchpresser
Mar 28 at 9:11
I tried all options stackoverflow.com/questions/6520231/… but ipad+safari always opens the content on the current tab. Opening a new tab/window is not possible due popup blocking mechanism of safari. stackoverflow.com/questions/44180931/… does not help because the file is generated dynamically and we are not sure that we will download a file when clicking the link (business rule)
– benchpresser
Mar 28 at 15:37
I tried all options stackoverflow.com/questions/6520231/… but ipad+safari always opens the content on the current tab. Opening a new tab/window is not possible due popup blocking mechanism of safari. stackoverflow.com/questions/44180931/… does not help because the file is generated dynamically and we are not sure that we will download a file when clicking the link (business rule)
– benchpresser
Mar 28 at 15:37
1
1
Try setting the content-type response header as application/octet-stream mime type
– Palamino
Mar 28 at 15:47
Try setting the content-type response header as application/octet-stream mime type
– Palamino
Mar 28 at 15:47
ı tried application/octet-stream, force-download, x-download but ipad always shows in the same page without saveas.
– benchpresser
Mar 29 at 6:24
ı tried application/octet-stream, force-download, x-download but ipad always shows in the same page without saveas.
– benchpresser
Mar 29 at 6:24
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55378559%2fimplementing-a-download-servlet-for-ipad%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55378559%2fimplementing-a-download-servlet-for-ipad%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
In your servlet, try setting the response header Content-Disposition: attachment; filename=myfilename.myext
– Palamino
Mar 27 at 17:16
Hi, I already added that but not working for iPad even if setting the disposition to attachment, when you download a text file its content is directly put to the initial page
– benchpresser
Mar 28 at 9:11
I tried all options stackoverflow.com/questions/6520231/… but ipad+safari always opens the content on the current tab. Opening a new tab/window is not possible due popup blocking mechanism of safari. stackoverflow.com/questions/44180931/… does not help because the file is generated dynamically and we are not sure that we will download a file when clicking the link (business rule)
– benchpresser
Mar 28 at 15:37
1
Try setting the content-type response header as application/octet-stream mime type
– Palamino
Mar 28 at 15:47
ı tried application/octet-stream, force-download, x-download but ipad always shows in the same page without saveas.
– benchpresser
Mar 29 at 6:24