<%@ page import="core.user.User" %> <%@ page import="java.util.Map" %> <%@ page import="java.util.HashMap" %> <%@ page import="java.util.List" %> <%@ page import="java.util.ArrayList" %><%-- Created by IntelliJ IDEA. User: lenovo Date: 2019/1/12 Time: 13:19 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 填写信息 <% Map map2=new HashMap(); Map map3=new HashMap(); map2.put("姓名","李先生"); map2.put("学号","201630126050"); map2.put("电话","18711191679"); map3.put("姓名","王先生"); map3.put("学号","201630126051"); map3.put("电话","18711191679"); List> list=new ArrayList>(); pageContext.setAttribute("map",map2); User user=(User)session.getAttribute("user"); String type=user.getType(); pageContext.setAttribute("type",type); %>
填写意见
${map.姓名}
${z.key}:${z.value}