• 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

BMP/GIF file Manipulation in JSP

 
Greenhorn
Posts: 25
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hai all
How to manipulate the BMP and GIF file in JSP and JS.
I want to store the selected image into the database(oracle)
and i want to retrieve the same when i need.
Where should i store and manipulate the images in JSP and JS.
and i want full feature about all the manipulation of the images using BLOB datatype in JSP
reply me immediately
regards
nathan
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Since JSP is designed for character output you should not try to serve binary files of any sort from a JSP page - use a servlet instead. You will have to set Content-type: and for best results set Content-length: headers.
(hint)"reply me immediately" is not a helpful thing to say in a group like this(/hint)
Bill

------------------
author of:
 
reply
    Bookmark Topic Watch Topic
  • New Topic