jsp

请问一下我的读出图片那里有错啊,
<%
  ArrayList list=(ArrayList)request.getSession().getAttribute("list");
  if(list!=null){
  for(int i=0;i<list.size();i++)
  {
      CarPO po=(CarPO)list.get(i);
  %>
          <div style="width:120px;height:200px;background-color:balck;float:left;margin:5px;">
          <img style="height: 200px; width: 200px;" src="${po.foodImage}">
   <%=(po.getFoodName())%>
</div>
  <%} 
 }
%>