Link to home
Start Free TrialLog in
Avatar of ronenr
ronenrFlag for Mexico

asked on

Building a URL for a Servlet generated file

I have a Servlet that creates a CVS file based on some user specifications. The file is created but it is created on my weblogic domain root (user_projects/domain/mydomain)

The issue is that after I created the file I need to provide an URL for the user to download the file, since the deployment is on a WAR file it is not clear for me where should I store the CSV file for been able to provide a URL to the user.
Avatar of ramazanyich
ramazanyich
Flag of Belgium image

why do you need to store CSV file locally on the server ?
you can directly stream generated CSV file to the client's browser.

Example code follows.



public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException,  IOException{
   doPost(request,response);
}
 
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException,  IOException{
 
     InputStream in =generateCSVFile(request);
     response.setContentType("application/csv");
     OutputStream out=response.getOutputStream();
     int k=-1;
     byte[] buf = new byte[10000];
     while((k=in.read(buf)) >0){
        out.write(buf,0,k);
     }
 
}

Open in new window

Avatar of ronenr

ASKER

More or less since I need to return a HTML page with information and that page should include the link to the file or the browser pop-up requesting to save or open the file. With your example  may  I also return the HTML page with the same stream?
you can return an HTML page with link again to the servlet URL with additional parameter for exmple.
and in the second invocation just do retrive csv and return it like in my example
ASKER CERTIFIED SOLUTION
Avatar of ramazanyich
ramazanyich
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ronenr

ASKER

OK, what I am trying to understand is, Is there a way to store the file on the server and build an URL for it (so the user can click the link and get the file) or I must retrieve the file using a servlet as your example suggest. In the case that the only way is to use a servlet to read and send the file the question was answer but if there is a way I can store the file and provide a link to it more information is needed.
Avatar of ronenr

ASKER

Although it do not directly answer the question about where to store the file on a Weblogic server I will use the solution suggested. Thanks for taking the time at looking at this issue.