aspose file tools
The moose likes Struts and the fly likes retrieve photo Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "retrieve photo" Watch "retrieve photo" New topic
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!!!
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: retrieve photo
 
Similar Threads
to retrieve data from an image type in ms sql
Getting database data to the UI
how to compare sql date
How to display image in JTable which is stored in database.
Stored procedure question