Ver Mensaje Individual
  #14 (permalink)  
Antiguo 24/05/2007, 06:23
Avatar de elAntonie
elAntonie
 
Fecha de Ingreso: febrero-2007
Mensajes: 894
Antigüedad: 17 años, 11 meses
Puntos: 10
Re: cargar pdf desde jsp

A ver cris


try
{
InputStream in = new FileInputStream(file);
byte[] data = new byte[in.available()];
in.read(data);

response.setContentType("application/pdf;");
response.setHeader("Content-Disposition","attachment;filename=\"unnombrecualqu eira.pdf\";");
response.setContentLength(data.length);
javax.servlet.ServletOutputStream servletoutputstream = response.getOutputStream();

servletoutputstream.write(data);
servletoutputstream.flush();
servletoutputstream.close();
} catch (IOException e) {
Traza.exception(this,".jsp-->IOException"+e.getMessage());
}