Home Answers Viewqa Java-Beginners how to retrieve image from mysql database using java and show it in HTML img tag ?

 
 


Sujitha
how to retrieve image from mysql database using java and show it in HTML img tag ?
5 Answer(s)      3 months and 22 days ago
Posted in : Java Beginners

how to retrieve image from mysql database using java and show it in HTML img tag

View Answers

January 30, 2013 at 3:55 PM


hi friend,

you can use the following line of code for retrieving the image from database as :

InputStream is = rs.getBinaryStream(3);

Or, you can also use the following code as :

Blob blobImage = rs.getBlob(columnIndex);
InputStream is = image.getBinaryStream();

January 31, 2013 at 9:01 AM


Ya. I already seen that code. But I want to display it in HTML tag. How to do this? Thanks in advance.


January 31, 2013 at 9:07 AM


Ya. I already seen that code. But I want to display it in HTML img tag. How to do this? Thanks in advance.


January 31, 2013 at 9:07 AM


Ya. I already seen that code. But I want to display it in HTML img tag. How to do this? Thanks in advance.


January 31, 2013 at 9:07 AM


Ya. I already seen that code. But I want to display it in HTML img tag. How to do this? Thanks in advance.









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.