| Author |
Display image in JSP
|
chetan dhumane
Ranch Hand
Joined: Jan 07, 2009
Posts: 628
|
|
How to display image stored in BLOB format .
I want to read it from MySQL and display on JSP page.
Thanks in advance
|
http://www.androcid.com/
|
 |
Ankit Garg
Saloon Keeper
Joined: Aug 03, 2008
Posts: 9189
|
|
Well you need to create a servlet which will be mapped to a URL like /serv/image and then in your JSP you have to write something like this
Here I'm taking the image ID to be 3434. The servlet will retrieve the image for that ID and send it as a response. You can search on google for the code for that servlet. this article also shows that type of servlet...
|
SCJP 6 | SCWCD 5 | Javaranch SCJP FAQ | SCWCD Links
|
 |
 |
|
|
subject: Display image in JSP
|
|
|