• 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

insert image

 
Greenhorn
Posts: 15
Eclipse IDE Firefox Browser Tomcat Server
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi...friends..
i just want to save image file from client side on server in java by using oracle 10g. please suggest me how a client browses from their system can save this image on server.and show on a j s p.
thanks....
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You need a few technologies for this:
if using database: BLOB
servlet: file upload
jsp: you need to choose between two options for this. One is to store the image on the file system so the HTML page can refer to it directly. The other is to store the image in the database and have another servlet that renders it.
 
shubhank khare
Greenhorn
Posts: 15
Eclipse IDE Firefox Browser Tomcat Server
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Jeanne Boyarsky wrote:You need a few technologies for this:
if using database: BLOB
servlet: file upload
jsp: you need to choose between two options for this. One is to store the image on the file system so the HTML page can refer to it directly. The other is to store the image in the database and have another servlet that renders it.




thanks a lot
reply
    Bookmark Topic Watch Topic
  • New Topic