如何在jsp页面中显示缓冲图像?
大家好, 我有一个java页面,里面有一个缓冲图像。我想将这个缓冲图像传递到 jsp 页面中,并在那里显示它。伙计们,请帮助我做到这一点。我是java新手。所以帮我写一些简单的代码。 提前致谢。
Hai guys,
I have a java page and there is a buffered image in it. I want to pass this buffered image into a jsp page and i want to display it there. Guys so pls help me to do it. I am new in java. so help me with simple codes.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将缓冲图像写入某些公共网络空间,并为 img 标记中的图像提供 src
将 src 作为 servlet 提供并直接从 servlet 输出图像
另请参阅
you can write buffered image to some public web space and provide src to that in img tag
provide src as servlet and output the image directly from the servlet
Also See
这是一个示例程序从中获取发布。效果很好。
Here is a sample program taken from this post. It works fine.