Forums Register Login

unable to download xml file

+Pie Number of slices to send: Send
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
+Pie Number of slices to send: Send
 

response.setContentType("text/xml;charset=ISO-8859-1");

 
+Pie Number of slices to send: Send
dear pradip,

thnx a lot for the reply. but its not working.

reg,
ritu
Your mind is under my control .... your will is now mine .... read this tiny ad
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 2370 times.
Similar Threads
Problem in downloading file from Servlet
embedding a jar file into a class??
displaying an image of type TIF
Sending a XML file as a Servlet response
Uploading jpeg images to webserver
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 29, 2024 03:19:59.