Tagged Questions
0
votes
2answers
46 views
Trigger download servlet from GWT client code without loosing state or being obstrusive
Hy there, I am fairly new and inexperienced with those fancy web technologies, so sorry for the probably dumb question. I have a GWT app that
generates an excel sheet on the server side,
stores ...
1
vote
1answer
47 views
how to add a user define extension effect in webserver
My JSP page is
<a href="xxx.lice">xx.lice</a>
I want the user to download the file, not open it when the link is clicked.
I tried putting the "lice" extension in tomcat web.xml and ...
1
vote
2answers
385 views
Java servlet for writing excel file causes error in IE7/IE8
I have a jsf app and when the user clicks a button, there is a backing bean method which calls this servlet.
The problem is that in IE7 and IE8, the file is unable to be downloaded. It gives the ...
1
vote
1answer
92 views
Renaming a PDF streamed by Java Servlet
Using the right mix of XSLT, XSL-FO and Apache FOP, I am able to send a PDF into some browser window.
In fact, I am sending the file content as follows:
...
0
votes
1answer
107 views
Download File Servlet - File Content contains binary
I had tried to develop a servlet that allow user to download file but it allow user to download the file but the file content contains binary garbage and not human readable. May I know what could be ...
0
votes
3answers
443 views
Downloaded files are corrupted in IE when requested simultaneously
I am experiencing an awkward problem related with downloading files in Internet Explorer. The server environment is as follows:
Apache2 as a web server with mod_jk
Tomcat6 as an application server
...
0
votes
0answers
78 views
SaveAs Dialogue Box is not poping up on exporting database into excel report
I am exporting data from database into excel file but SaveAs Dialogue Box is not poping up .Below I am posting my codes .plz guys point my mistake and guide me to the right path .Thanx in advance...
...
1
vote
4answers
89 views
send a file to a client after long wait
i've a java servlet that makes some reports. When a user choose a report it makes a query on a db and stream the xls report to the client. All in synchronous way. The problem is that sometimes i've a ...
-1
votes
1answer
1k views
download file using java servlet [closed]
I am using Java servlet POST method. I am sending some data to server and by processing that data i am creating one file on server and i want to return that file and browser should ask download box.
...
2
votes
1answer
371 views
Alternate way for downloading file as CSV using ExtJS 4.1 without using Ajax Request?
I need to download data using servlet as CSV File.I am passing a parameter by clicking on the navigation tree from ExtJS 4.1 to the servlet via Ajax Request.Is there any alternate way to pass the ...
3
votes
1answer
90 views
Is there an equivalent to GlassFish “Alternate Document Roots” for Tomcat?
Since storing uploaded files in the container of a Java EE web application is not recommended, I store them in a local directory outside the webroot.
Now I need to serve them to web users. With ...
0
votes
0answers
138 views
After migration to weblogic 10g file download is not working
i have migrated from weblogic 8.1.6 to weblogic 10g. Following code is for downloading file. It was working on weblogic 8, but it is not working on weblogic 10g.
public static void ...
3
votes
1answer
3k views
Call servlet from GWT with post data and download file generated by the servlet
I have my ExportServlet, which are generating XLSX files (Excel) which my user will request from my GWT application by clicking a export button.
If I use the GET approach, the user are prompted to ...
0
votes
1answer
387 views
Force browser download in Servlet- Spring
I am new to Spring MVC and I had a doubt about accessing the HttpServletResponse object in a servlet.
Basically my code is something like this:
@RequestMapping("/part of requesturl")
@ResponseBody ...
3
votes
2answers
586 views
Set browser title in servlet which serves a PDF file [duplicate]
Possible Duplicate:
How to change the title of a browser page which a servlet streamed a PDF to?
I want to display a PDF file in browser, so I send the PDF to response output stream. I set ...
1
vote
1answer
2k views
getting error “getOutputStream() has already been called for this response”
I am showing report on some event.I want controller to show popup for save and open .
I already set file in response , after setting response i am returning view.
Now my question is,
I am getting ...
0
votes
1answer
345 views
java servlet download file in specific directory
I would like to know if it's possible to download a file from a servlet and directly save it in a specific directory on the client (without asking the user to select a directory where to save the ...
1
vote
2answers
417 views
How to download images from the same folder as where the image is uploaded?
I am creating a project wherein the user can upload his photo. This photo is stored in the folder "images/uploads/filename". When his profile is created and the photo is to be shown, I use the ...
-1
votes
2answers
816 views
Downloading files using servlets
hi i have tried the following java codes which works fine if i use them as a java application but when i use the same code in my servlet page they dont work means i am not able to download the files. ...
0
votes
0answers
478 views
Error handling when downloading a file from a servlet
I have a web application that must work with IE7 (yeah i know..) where the frontend is entirely made with ExtJS4, and theres a servlet used to download files. To download a file i send some parameters ...
0
votes
1answer
410 views
Custom download servlet
I looked into BalusC's code for a custom download servlet from absolute path (see http://balusc.blogspot.com/2007/07/fileservlet.html#FileServletServingFromAbsolutePath). I'm not a Java Web Developer ...
0
votes
2answers
832 views
How to send PDF file from backend Java code?
I have a JSP file, there backend helper class to it. From the back end helper I need to send PDF file to the JSP as an attachment. How can I achieve that?
-1
votes
3answers
111 views
Servlet and support for large quentities files downloaded
I need to create a high available solution for downloading files (from a server) via a web app.
It is about downloading PDF's.
I am afraid that a simple tomcat and servlet based solution is not ...
1
vote
1answer
685 views
Save file dialog not appearing
I am tryig to make a song available for download on my website. I am using a download servlet that I have used before to make zip files available for download. I have run through the code and ...
2
votes
1answer
317 views
Download process is not visible while servlet is downloading pdf
I m using content-disposition to download pdf . When I click the download button, the complete pdf file is downloaded first and then browser shows the dialog box to save the file. I want the browser ...
1
vote
1answer
211 views
How do I download a image file from google webapp engine?
AppEngineFile AFE = new AppEngineFile(FILESYSTEM + alist.get(0).getPath());
BlobKey bk = FileServiceFactory.getFileService().getBlobKey(AFE);
if("image/jpeg".equals(alist.get(0).getContentType()) ){
...
0
votes
1answer
2k views
Problem in response from servlet output stream
In my Java Based Web application, I am trying to write some files in a ZIP file and I want to prompt the user to download/cancel/save. The time when the download dialog box opens and if I click on ...
1
vote
1answer
868 views
download multiple files types
I am using jsp servlet to upload and download files.
I want to download many types of files, so I choose to download them as zip files in order not to fall in defining each type of attachment in the ...
0
votes
2answers
2k views
How to show a Save As dialog for a iText generated PDF?
I want to show a Save As dialog when I send the PDF file which is generated by iText in a servlet. How can I achieve this?
-1
votes
1answer
308 views
downloaded txt file become shrinked
I am trying to write a txt file with my servlet and send it to my desktop app. The desktop app saves the file on local disk. There is no problem with downloading big binary files but txt files which ...
5
votes
3answers
3k views
Java servlet download filename special characters
I am writing a simple file download servlet and I can't get correct filenames. Tried URLEncoding and MimeEncoding the filename as seen in existing answers, but none of them worked.
The fileData ...
3
votes
2answers
989 views
Restrict download file bandwidth/speed in Servlet
we got high-load java application which works in clustered mode.
I need to add ability to download and upload files for our customers.
For storing files i'm going to user gridFs, not sure, it's best ...
1
vote
1answer
116 views
Informing the user that the file is being generated in a download servlet
I have a download servlet wich generates a ZIP with some files, one of them pretty big, and then sends the generated file in the response for download.
The problem is that the generating process is ...
5
votes
4answers
3k views
Java localized filenames
How can i set localized filenames in java.Currently everytime i click on a localized file having a non-ascii filename in my application, the windows save dialog box pops out, but it isnt displaying ...
0
votes
3answers
3k views
file download using RequestBuilder of gwt
I need to implement file download .I don't want give any server side file urls to download directly .I created a servlet which will open the file and write it to stream of response.Now coming to front ...
0
votes
2answers
605 views
How do you force a download prompt, before data it sent from a servlet?
How do you force a download prompt to popup before you send any data to browser? I know about content disposition attachment, but this is different. Basically, the servlet starts sending data to the ...
2
votes
2answers
795 views
How can you tell if the user hit cancel during a download from a Java servlet?
How can you tell if the user hit cancel during a download from a Java servlet? What seem to happen for me with IE, the output stream println() blocks. The used hit cancel, but is there a way to time ...
0
votes
3answers
2k views
Downloading a zip file returns a corrupt zip using servlets
I am trying to create a zip file using servlets but it returns me a corrupt zip file , here is the code for that in zipcontents function i am creating the zip , can someone help me out. Thanks in ...
7
votes
3answers
5k views
Download a file using Ajax
I have written to make a zip file , now I want to trigger that servlet using Ajax and prompt the download dialog to the user , i can trigger the servlet but i dont know how to get the save dialog.
...
0
votes
2answers
3k views
Servlet send image from server and save in client
I'm new and just developing on J2EE.
I am modifying an existing application (an OpenSource project).
I need to save an image on a client sent by the server, but I do not know how.
This activity must ...
7
votes
1answer
9k views
How to use GWT when downloading Files with a Servlet?
I am creating a simple project that will allow me to upload and download files using gwt. i am having trouble with the downloading of files that are on my server.
For the file upload i used ...
3
votes
1answer
10k views
Downloading Excel file from server using servlets
I have an Excel file on the server side. How I can display it on client side browser using servlets?
Thanks in advance.
-1
votes
2answers
811 views
file read and return a byte array
dear all,
i want to read a mp3 file using java and want to download it in jsp,i want to return byte array or i can only return one byte at a time?.please suggest
3
votes
2answers
1k views
Java Servlets: File download breaks when user navigates away from page
I have a servlet that allows users to download (potentially large) zip files from a web page. If the user clicks on a link to download a zip file, code similar to the following is executed in the ...
2
votes
3answers
4k views
Servlet - how to download multiples files from database
I look around and it seems that zipping all the files together is the way to go. If that the case this is the design I am thinking of doing. Please let me know if there is more efficient way of doing ...
4
votes
1answer
220 views
Track completed downloads from glassfish
I want to be able to track completed downloads served by my glassfish server. I couldn't find a 100% correct solution using servlet life cycle listeners.
Does anyone have a better idea?

