在struts中显示来自表单bean的图像

时间:2011-07-12 12:03:56

标签: image forms struts javabeans

我在表单bean中有一个字符串属性,其中包含图像的URL(来自Web)。 如何在我的jsp图像上显示这个图像。

有人可以建议使用哪个标签。

1 个答案:

答案 0 :(得分:0)

如果您正在使用Struts 1,那么您只需在jsp-page成功使用以下内容:

    <bean:parameter id="imagePath" name="beanPropertyForImagePath" />
    <img src="${imagePath}" width="20" height="20" alt="" />