我有一个名为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"/>
但我无法打印图像。请建议如何打印图像。
答案 0 :(得分:0)
你有没有尝试
<img src="<%= out.print(strImage); %>" alt="Test Image 1" width="270" height="190"/>