How to show an image when fetching from database 2004-09-29 - By Andy Susanto
Back hai,
this is my partial code :
Statement stmt = Con.createStatement(); ResultSet resultSet = stmt.executeQuery("SELECT PIC FROM TransTreatment");
byte[] test = new byte[4096]; res.setContentType("image/jpeg"); while (resultSet.next()) { // Get data from the binary column test = resultSet.getBytes("PIC"); }
how to finish my code, i would like show an image using IMG TAG, but i do not how to implement that, btw is that ok for my code that i use getBytes() Method or is there a good Method beside that
TIA,
andy
__ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ __ To unsubscribe, send email to listserv@(protected) and include in the body of the message "signoff SERVLET-INTEREST".
Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
|
|