I have 100 BufferedImage object's in ArrayList, i want to show all of these images in a jsp.
<%
ArrayList<BufferedImage> list = GlobalData.getImageBufferArrayList();
%>
</head>
<body>
<ul>
<li><img alt="" src=""> </li>//image1
<li><img alt="" src=""> </li>//image2
<li><img alt="" src=""> </li>//image3
...
..
...
</ul>
</body>
I don't know what to put in src on these images
Is it possible to put image data as src of image.(Just like we get image data from canvas in html)
Or is their any decent way of showing these images.