One thing to remember is that JSP pages were designed for *text* output,
like text/plain, text/html, or text/xml.  Binary data should be output
by *Servlets*, not JSP's.

                        -=- D. J.

Antonio Jimenez wrote:
> i trying to view images stored in database
> the mime-type image/gif, image/bmp and image/tif(with plugin) work but image/jpg 
>don't work
> i am using JSWDK 1.0 on NT and the detail code is
> 
>--------------------------------------------------------------------------------------------
>     OutputStream salida = response.getOutputStream();
>
>     response.setContentType(rs.getString("MIMETYPE")) ;
>     response.setContentLength(rs.getInt("TAMANO"));
>
>     BufferedInputStream imageData = new 
>BufferedInputStream(rs.getBinaryStream("FOTO"));
>         byte[] buf=new byte[4*1024];
>
>     while ( (len = imageData.read(buf,0,buf.length)) != -1 ) {
>         salida.write(buf);
>         }
>     salida.flush();

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to