Author
unable to download xml file
Ritu Pande
Greenhorn
Joined: Jun 05, 2005
Posts: 17
posted Sep 15, 2005 03:13:00
0
Dear All, I m trying to download the xml file from the server. I m able to get the download dialog box and able to download the file on the client browser, the file contains the print statement given in the jsp file. Its not displaying the original content of xml file. Below is the jsp code. I m not getting where its going wrong. <%@ page import="java.io.*,java.io.FileInputStream ,java.io.InputStream ,java.io.File ,java.io.FileInputStream ,java.net.URL"%> <% String fileName = "forma.xml"; String actualFileName = directory + fileName; out.println("ACTUAL FILE NAME : " + actualFileName +"<BR>"); InputStream inputStream = null; try { response.setContentType("application/Octet-Stream"); response.setHeader("Content-Disposition","attachment;filename=" + fileName ); int sizeRead = 256; byte[] buf = new byte[1024]; File file = new File(actualFileName).getAbsoluteFile(); out.println("FILE : "+file +"<BR>"); URL url = file.toURL(); inputStream = (BufferedInputStream )url.openConnection().getContent(); out.println("INPUT STREAM ......." + inputStream +"<BR>"); while( (sizeRead = inputStream.read(buf)) != -1 ){ out.println(sizeRead); } /*FileInputStream fileinputstream = new FileInputStream (file); byte abyte1[]; int i = (int)file.length(); byte abyte0[] = new byte; for(int j = 0; j < i; j += fileinputstream.read(abyte0, j, i - j)); abyte1 = abyte0; out.println("value of abyte1 :"+abyte1); */ } catch(Exception ex) { out.println("Exception " + ex.getMessage() +"<BR>"); } finally{ try{ //inputStream.close(); }catch(Exception e){ out.println("Exception in finally" + e.getMessage() +"<BR>"); } } %> Thnx in adv. Regards, ritu
Pradeep bhatt
Ranch Hand
Joined: Feb 27, 2002
Posts: 8876
response.setContentType("text/xml;charset=ISO-8859-1");
Groovy
Ritu Pande
Greenhorn
Joined: Jun 05, 2005
Posts: 17
posted Sep 15, 2005 05:47:00
0
dear pradip, thnx a lot for the reply. but its not working. reg, ritu
subject: unable to download xml file