How to display an image using tag in JSP

前端 未结 2 1458
挽巷
挽巷 2020-12-22 10:07

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

2条回答
  •  攒了一身酷
    2020-12-22 10:57

    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.

    public class CustomImageBytesResult implements Result {
    .
    .
    .
    }
    

提交回复
热议问题