You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:
have access to post topics
communicate privately with other members (PM)
not see advertisements between posts
have the possibility to earn one of our surprises if you are an active member
access many other special features that will be introduced later.
I select the image information from oracle.
how can i display the image in the page?
I did something like that:<img src="display.jsp"/> but I doesn't work
That JSP should return a byte stream that describes the image. The actual content of the byte stream is determined by the image itself and the format it is in.
You could also just write the image to a file and generate HTML that points to that file.