How to show an image when fetching from database
andy susanto <[email protected]> Wed, 29 Sep 2004 20:43:59 +0700
| Newsgroups | gmane.comp.java.sun.servlet |
|---|---|
| Message-ID | <000c01c4a62a$62445860$a3e292ca@personal> |
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 [email 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