java+getactionmap_Struts2 使用OGNL遍历map方法详解

一.Action中的代码:MapAction.java

package com.zx.demo.action;

import java.util.ArrayList;

import java.util.HashMap;

import java.util.List;

import java.util.Map;

import com.opensymphony.xwork2.ActionSupport;

import com.zx.demo.model.Product;

import com.zx.demo.model.Student;

public class MapAction extends ActionSupport

{

private Map map;

private Map studentMap;

private Map arrayMap;

private Map> listMap;

//这里省略get set方法

public String testMap(){

map=new HashMap();

map.put("1", "one");

map.put("2", "two");

studentMap=new HashMap();

studentMap.put("student1",new Student(new Long(1),"20034140201","张三1","男",25));

studentMap.put("student2",new Student(new Long(2),"20034140202","张三2","女",26));

studentMap.put("student3",new Student(new Long(3),"20034140202","张三3","男",27));

arrayMap=new HashMap();

arrayMap.put("arr1", new String[]{"1","2003401","leejie","male","20"});

arrayMap.put("arr2", new String[]{"2","2003402","huanglie","male","25"});

arrayMap.put("arr3", new String[{"3","2003403","lixiaoning","male","21"});

listMap=new HashMap>();

List list1=new ArrayList();

list1.add(new Student(new Long(1),"20034140201","张三1","男",25));

list1.add(new Student(new Long(2),"20034140202","张三2","男",25));

list1.add(new Student(new Long(3),"20034140203","张三3","男",25));

listMap.put("class1", list1);

List list2=new ArrayList();

list2.add(new Student(new Long(1),"20034140301","李四1","男",20));

list2.add(new Student(new Long(2),"20034140302","李四2","男",21));

list2.add(new Student(new Long(3),"20034140303","李四3","男",22));

list2.add(new Student(new Long(4),"20034140304","李四4","男",23));

listMap.put("class2", list2);

return SUCCESS;

}

}

二.前端测试页面:testMap.jsp

Java代码

contentType="text/html;charset=UTF-8"

%>

uri="/struts-tags" %>

struts2中的map遍历总结

1.map中的key为String,value为String字符串

key:

value:

******************************************

key=valueIDnumnamesexage

******************************************

2.map中的key为String,value为Student对象

key=valueIDnumnamesexage

******************************************

3.map中的key为String,value为String数组

classIDnumnamesexage

******************************************

4.map中的key为String,value为list集合

附:map的类型为Map在前端遍历,session.powerList存放的类型是:List(Menu)

  • ')" >

总结

以上就是本文关于Struts2 使用OGNL遍历map方法详解的全部内容,希望对大家有所帮助。有兴趣的朋友可以参阅:OGNL表达式基本语法与用法详解  Struts2 通过ognl表达式实现投影  Struts2 OGNL表达式实例详解等。感谢大家对本站的支持。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值