I having image byte array in app_be.getBytes().
BufferedImage img = ImageIO.read(new ByteArrayInputStream(app_be.getBytes()));
i having this line in my jsp.I got image in img.how can i display this image in my jsp img tag can u help me. other than this image all working properly. Like this i want to print tat img can u please help me
<img src="<%= img%>" height="100%" width="100%" >
i tried like this <img src="<%= img.getSource()%>" height="100%" width="100%" >
but tat also not working i dont know how to display img plz help me.