我有一组图像的路径以字符串数组的形式显示(显示)。现在我试图在html页面中显示我的所有图像。但没有成功。
<div class="result-display-class">
<%
String[] display = (String[])request.getAttribute("images");
if (display != null && display.length != 0)
{
for(int i=0; i<display.length; i++)
{
out.println(display[i]);
%>
<img src="display[i]" alt="facebook" style="width: 40px; height: 40px;">
<%
}
}
%>
</div>
你能建议我该怎么做?它是所有图像的displayinh alt值。路径已经过验证。
答案 0 :(得分:1)
您需要使用内联scriptlet:
<img src="<%= display[i] %>" alt="facebook" style="width: 40px; height: 40px;">