How to retrieve and display images from a database in a JSP page?

前端 未结 5 1919
渐次进展
渐次进展 2020-11-21 04:37

How can I retrieve and display images from a database in a JSP page?

5条回答
  •  迷失自我
    2020-11-21 04:59

    You can also create custom tag for displaying image.

    1) create custom tag java class and tld file.

    2) write logic to display image like conversion of byte[] to string by Base64.

    so it is used for every image whether you are displaying only one image or multiple images in single jsp page.

提交回复
热议问题