How did you end up with an image file in a String? You'd probably rather have it in a byte array, ByteArrayInputStream, or FileInputStream.
In any case, you want to use response.getOutputStream() in a servlet (not JSP) to push it to the web browser. Call ServletOutputStream.print(int) over and over (or you may also want to wrap it in a BufferedOutputStream). Sorry if that isn't clear. It sounds more complicated than it really is. -jmc =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at: http://archives.java.sun.com/jsp-interest.html http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.jsp http://www.jguru.com/faq/index.jsp http://www.jspinsider.com
