I have an HTMl page and I am storing the image as a blob in DB.While displaying on the browser I need to display the image as a thumb nail( not the original size).How do i do this using servlets
You could write a servlet that retrieves the image data from the database and resizes it to your desired "thumbnail" size using an imaging library (JAI perhaps?). The servlet would set the appropriate content type headers and return the resized image data as the response. The servlet would be referenced from the html page using the img tag just like any other image.