Hi
I have to display 4 BufferedImage in jsp page.I am getting these images from a java code. In the jsp page i am using:
ImageIO.write(demo.getBuffImage(), "png", response.getOutputStream());
With this i am able to get the image. However if i write different ImageIO.write(....) for displaying each of the 4 images, I still get only the first image and not the rest.
I am new to jsp. Please give me some solution.
Thanks.