• 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

image upload in applet from user's pc

 
Ranch Hand
Posts: 30
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hai ,
I am working on an applet which contains an image.
i am displaying some images on the html page, when the user clicks them
using LiveConnect i am able to display them on the first image.

instead if user uploads images from his pc, i must the store the image onto the server & diplay it on the first image.

how to save this image on the server & display it back on the applet.
are there any useful links?

[ March 02, 2006: Message edited by: Kiran Kumar ]
[ March 02, 2006: Message edited by: Kiran Kumar ]
 
Ranch Hand
Posts: 3640
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Kiran you need to do two things

(1)You need to Upload image on the server using Servlet
(2)Your Servlet should revert back with URL of the image that uploaded to server. Pass URL as parameter to applet and let applet display that image.
reply
    Bookmark Topic Watch Topic
  • New Topic