How to return many images to browser?

hi all

im having a servlet which will create an array of images!

and i would like to send it to the browser via html, how can i do this?

if im confusing, im trying to create a servlet which creates charts as images dynamically, and it should send the images to client browser as HTML.

thanks and regards

vijay

[347 byte] By [JavaAddicta] at [2007-10-2 21:13:21]
# 1
You create multiple <img> tags in your html.Each img tag is a request to load a different image.so the image tage would be something like<img src="ImageServlet?imageId=42">
evnafetsa at 2007-7-13 23:59:47 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

hi

thank u so much!

that gave me the starting point!

hope i can crack rest of the code!

[i modified my design like one servlet creates multiple charts and put it in session object. another servlet like what u said, responds to image tag requests! thanks again]

thanks and regards

vijay

JavaAddicta at 2007-7-13 23:59:47 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...