Java6, Struts2.2.3.1 - I have a form bean with attributes id, desc and imageByteArray. Struts action gets executed and it redirects to a JSP where i want to access these bean attributes like id, desc and convert the imageByteArray and display it as an image. I tried this post , but that's not working for me.
Java
//I encode the bytearray using Base64 - where this.bean.imageByteArray refers to the form bean
this.bean.setImageByteArray(new org.apache.commons.codec.binary.Base64().encode(imageInByteArr));
JSP
//I tried this, but not working
<img src="data:image/jpg;base64,<c:out value='${bean.imageByteArray}'/>" />
Any idea how to convert byte array and display as an image in JSP
Update Byte array (byte[] imageByteArray) refers a JPG image and I'm getting the following img tag as output and obviously nothing gets displayed,
<img src="data:image/jpg;base64,[B@2e200e">
imageByteArray? I guess you have to callencodeString... – home May 9 '12 at 5:50