我在我的 JSP 上使用下面提到的代码:
<%
List eCCategoryList = form.getCategoryList();
//Map<String, String> catNameImgMap = (Map<String, String>) session.getAttribute("catNameImgMap");
Map catNameImgMap = (Map) form.getBlogIdNameMap();
String strImage = "";
Iterator it = eCCategoryList.iterator();
ECircularCategory category = null;
int counter = 0;
while (it.hasNext()) {
category = (ECircularCategory) it.next();
strImage = (String) catNameImgMap.get(category.getName());
%>
strImage
包含我需要在我的 JSP 上显示的图像。我尝试显示如下图像:
<img src="<%=strImage%>" alt="Test Image 1" width="270" height="190"/>
但是上面的代码不起作用,只显示了一个简单的空格,没有别的,我需要在我的 JSP 页面上显示图像,每个图像都存储在strImage
字符串中,我该怎么做?
请建议。