aspose file tools
The moose likes Servlets and the fly likes Displaying .bmp file on the jsp page. Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Servlets
Reply locked New topic
Author

Displaying .bmp file on the jsp page.

Vijay Shrivastava
Ranch Hand

Joined: Nov 15, 2001
Posts: 64
I would like to display a bitmap (.bmp File) on a jsp page. Servlet is able to read the BLOB from databse and byte stream is written successfully to response.

But at the jsp side nothing get displayed.

In servlet code I have done the outstream.flush();
and res.flushBuffer();
Also stream is closed.

I have tried both following ContentType
res.setContentType("image/x-ms-bmp");
res.setContentType("image/bmp");

At present I am not trying to convert the format to any other but would like to display as the raw data read from the database. Is there any issue in not doing conversion and trying to display bitmap image?

Any suggestion is appreciated.


Vijay shrivastava
David O'Meara
Rancher

Joined: Mar 06, 2001
Posts: 13459

This is not the fault of the JSP, browsers typically don't support bitmaps without some sort of external plugin. Your options would be to find a plugin for your browser that lets it display bitmaps, or convert the image to something else (like a png) before sending it to the client.

Dave
David O'Meara
Rancher

Joined: Mar 06, 2001
Posts: 13459

Please don't post the same question in multiple forums. It creates duplicate conversations and wastes the time of the people trying to help you.

I'm closing this thread, please see the duplicate in JSP's.

Dave.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Displaying .bmp file on the jsp page.
 
Similar Threads
tray icon is not displaying
Serlvet to display image - how to prevent client from "Save As Image" ?
Displaying .bmp (bitmap file) in jsp
How can I convert a Hex stream to a bitmap?
DIsplaying Image on JSP