使用JSP上的<img/>标记打印包含图像名称的字符串

时间:2012-07-28 11:47:55

标签: html5 jsp jquery-mobile jstl struts-1

我有一个名为strImage的字符串,其中包含图像名称:http://m.sears.com/ecircular/SearsLocalAd.jpg,我需要在JSP上打印这些图像。我使用以下2个代码行来打印图像:

<img src="<%=strImage%>" alt="Test Image 1" width="270" height="190"/>

我也用过

<img src="<c:url value="<%=strImage%>"/> alt="Test Image 1" width="270" height="190"/>

但我无法打印图像。请建议如何打印图像。

1 个答案:

答案 0 :(得分:0)

你有没有尝试

<img src="<%= out.print(strImage); %>" alt="Test Image 1" width="270" height="190"/>