获取set()和push()方法向值栈放的数据
Posted siwuxie095
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取set()和push()方法向值栈放的数据相关的知识,希望对你有一定的参考价值。
------------------siwuxie095
获取 set() 方法向值栈放的数据
1、具体步骤
(1)在 Action 中使用 set() 方法向值栈放数据
(2)在 JSP 页面中从值栈获取数据
2、具体实现
(1)编写 Action
@Override public String execute() throws Exception {
// (1) 获取值栈对象 ActionContext context=ActionContext.getContext(); ValueStack stack=context.getValueStack();
// (2) 调用值栈对象的 set() 方法 stack.set("username", "siwuxie095");
return SUCCESS; } |
(2)编写页面
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!-- 引入 Struts2 标签库 --> <%@ taglib uri="/struts-tags" prefix="s"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Data</title> </head> <body>
<!-- 获取 set() 方法设置的值:根据名称获取值 --> <s:property value="username"></s:property>
</body> </html> |
获取 push() 方法向值栈放的数据
1、具体步骤
(1)在 Action 中使用 push() 方法向值栈放数据
(2)在 JSP 页面中从值栈获取数据
2、push() 方法简介
1)使用 push() 方法设置值,没有名称,只有设置的值
2)push() 方法会把向值栈中放的数据存到 top 数组中
2、具体实现
(1)编写 Action
@Override public String execute() throws Exception {
// (1) 获取值栈对象 ActionContext context=ActionContext.getContext(); ValueStack stack=context.getValueStack();
// (2) 调用值栈对象的 push() 方法 stack.push("abcd");
return SUCCESS; } |
(2)编写页面
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!-- 引入 Struts2 标签库 --> <%@ taglib uri="/struts-tags" prefix="s"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Data</title> </head> <body>
<!-- 获取 push() 方法设置的值:根据 top 数组获取值 --> <s:property value="[0].top"></s:property>
</body> </html> |
【made by siwuxie095】
以上是关于获取set()和push()方法向值栈放的数据的主要内容,如果未能解决你的问题,请参考以下文章