Here is the code to retrieve image in action class. I have tried it, but not able to display it I don\'t know about the image processing. How should I use tags in JSP to dis
You should do it in struts 2 way by implementing a Custom Result Type to display image on the JSP.
Here is an Example for displaying dynamic image in Stuts2.
It creates a custom result type by implementing Result interface.
Result
public class CustomImageBytesResult implements Result { . . . }