• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

File upload

 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have an image in my mysql database,and i want to display it on a jsp using struts. how can i write code?
Here i needed to upload an image and viewign an image on JSP page


please help me

Thanks a lots
 
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Julie

Actually, i can see 2 questions in your post:
1- how to display a picture stored in a database from a JSP,
2- how to provide a user the way to upload a picture.

Question 1 : See previous topic "Display image from Action class". It might help.

Question 2 : What do you exactly want. Upload file and simply store it on a file server ? Upload the file then insert it in your database ?
[ August 31, 2005: Message edited by: Franck Tranchant ]
 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm not sure if I understand your question exactly... are you trying to upload a file using struts?

There's a fairly easy to understand example of file uploads in the struts-examples file included with the struts download. You'll probably have to adapt it, but it'll get you started.
 
Ranch Hand
Posts: 66
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

May be it helps u
<html:file property="fileSelectionBox"/> ---> Tag creates the file upload element on the form. The property must be of the type org.apache.struts.upload.FormFile.
 
reply
    Bookmark Topic Watch Topic
  • New Topic