How to display list of byte[] image in jsp
Hi all,
I want to displays list of images in jsp.
for(int i=0;i<10;i++)
{
byte[] imgDat=image.getImage();
//This method is returning the byte[] for an image..
response.setContentType("image/jpeg");
OutputStream o = response.getOutputStream();
o.write(imgDat);
//this code is displaying only one image...
//I want to display all image on jsp.
}
sheetal
__________________
sheetal
|