| Author |
retrieve photo
|
smitha mano
Ranch Hand
Joined: Sep 26, 2005
Posts: 70
|
|
Hai all in my Emp table id,name,photoName,remarks i stored photo in to the server/deploy/test.war/images/Lura.jpg ,inthe table i stored only the nname of the photo i needed, how i retrieve photoname and display photo on jsp page? please help me...........
|
 |
Scheepers de Bruin
Ranch Hand
Joined: Jul 19, 2005
Posts: 99
|
|
Please read the naming policy of the site! Remember paths of stuff in your WAR file is relative. So if you images are stored in /images in your WAR file, you could use the following to display an image on a .jsp: <% // put your code to retrieve the filename from the db here // lets assume you put it in a String called "filename": filename = "myimage.jpg"; %> <img src="/<%=request.getContextPath%>/images/<%=filename%>"> [ September 27, 2005: Message edited by: Scheepers de Bruin ]
|
We're doomed!!<br />Yay!!!<br />No that's bad Girr!!<br />Yay!!!
|
 |
 |
|
|
subject: retrieve photo
|
|
|