在Action中获取表单提交数据

-----------------siwuxie095

在 Action 中获取表单提交数据

1、之前的 Web 阶段是提交表单到 Servlet,在其中使用 Request 对象

的方法获取数据

2、Struts2 是提交表单到 Action,但 Action 没有 Request 对象,不能

直接使用 Request 对象获取数据

「可以间接使用 Request 对象获取数据」

3、Action 获取表单提交数据主要有三种方式:

(1)使用 ActionContext 类

(2)使用 ServletActionContext 类

(3)使用 ServletRequestAware 接口

「底层封装的依然是 Servlet 的 API」

使用 ActionContext 类获取

1、使用 getParameters() 方法获取表单提交数据,因为它不是静态

方法,所以需要先创建 ActionContext 对象

注意:

ActionContext 对象不是 new 出来的,而是通过 ActionContext 类

直接调用静态方法 getContext() 返回的

2、具体过程

(1)创建表单,提交表单到 Action

(2)在 Action 中使用 ActionContext 类获取表单提交数据

3、具体实现

(1)编写页面

form.jsp:


<%@ page language="java" contentType="text/html; charset=UTF-8"

pageEncoding="UTF-8"%>

<!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>表单</title>

</head>

<body>

<form action="${pageContext.request.contextPath }/form.action" method="post">

username:<input type="text" name="username"/>

<br/>

password:<input type="password" name="password"/>

<br/>

address:<input type="text" name="address"/>

<br/>

<input type="submit" value="提交"/>

</form>

</body>

</html>

(2)编写 Action

Form1Action.java:


package com.siwuxie095.action;

import java.util.Arrays;

import java.util.Map;

import java.util.Set;

import com.opensymphony.xwork2.ActionContext;

import com.opensymphony.xwork2.ActionSupport;

/**

* 使用 ActionContext 类获取

*/

public class Form1Action extends ActionSupport {

@Override

public String execute() throws Exception {

ActionContext context=ActionContext.getContext();

/*

* 调用 getParameters() 方法,返回值是 Map 类型,创建以接收

*

* Key 即表单中输入项的 name 属性值,Value 即输入的值

*

*/

Map<String, Object> map=context.getParameters();

// 得到所有的 Key 值

Set<String> keys=map.keySet();

//根据 Key 得到 Value

for (String key : keys) {

//数组形式:输入项可能有复选框,传过来多个值

Object[] obj=(Object[]) map.get(key);

System.out.println(Arrays.toString(obj));

}

return NONE;

}

}

(3)配置 Action

struts.xml:


<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE struts PUBLIC

"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"

"http://struts.apache.org/dtds/struts-2.3.dtd">

<struts>

<package name="demo" extends="struts-default" namespace="/">

<action name="form" class="com.siwuxie095.action.Form1Action"></action>

</package>

</struts>

(4)访问路径

1)http://localhost:8080/工程名/form.jsp

注:

使用 ServletActionContext 类获取

1、直接调用 ServletActionContext类中的静态方法,

获取 Request 对象,进而通过 getParameter() 方法

获取表单提交数据

2、具体实现

(1)编写页面(同上 form.jsp)

(2)编写 Action

Form2Action.java:


package com.siwuxie095.action;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

/**

* 使用 ServletActionContext 类获取

*/

public class Form2Action extends ActionSupport {

@Override

public String execute() throws Exception {

// 先使用 ServletActionContext 类调用静态方法获取 Request 对象

HttpServletRequest request=ServletActionContext.getRequest();

// 再调用 Request 对象的方法获取表单提交数据

String username=request.getParameter("username");

String password=request.getParameter("password");

String address=request.getParameter("address");

System.out.println(username+"-"+password+"-"+address);

return NONE;

}

}

(3)配置 Action

struts.xml:


<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE struts PUBLIC

"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"

"http://struts.apache.org/dtds/struts-2.3.dtd">

<struts>

<package name="demo" extends="struts-default" namespace="/">

<action name="form" class="com.siwuxie095.action.Form2Action"></action>

</package>

</struts>

(4)访问路径(同上)

注:

使用 ServletRequestAware 接口获取

1、让 Action 实现 ServletRequestAware接口,获取

Request 对象,进而通过 getParameter() 方法获取表

单提交数据

2、具体实现

(1)编写页面(同上 form.jsp)

(2)编写 Action

Form3Action.java:


package com.siwuxie095.action;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts2.interceptor.ServletRequestAware;

import com.opensymphony.xwork2.ActionSupport;

/**

* 使用 ServletRequestAware 接口获取(实现该接口)

*/

public class Form3Action extends ActionSupport implements ServletRequestAware {

private HttpServletRequest request;

//重写 ServletRequestAware 接口的 setServletRequest() 方法获取 Request 对象

@Override

public void setServletRequest(HttpServletRequest request) {

//使用 ServletRequestAware 接口注入 Request 对象

this.request=request;

}

@Override

public String execute() throws Exception {

String username=request.getParameter("username");

String password=request.getParameter("password");

String address=request.getParameter("address");

System.out.println(username+"-"+password+"-"+address);

return NONE;

}

}

(3)配置 Action

struts.xml:


<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE struts PUBLIC

"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"

"http://struts.apache.org/dtds/struts-2.3.dtd">

<struts>

<package name="demo" extends="struts-default" namespace="/">

<action name="form" class="com.siwuxie095.action.Form3Action"></action>

</package>

</struts>

(4)访问路径(同上)

注:

【made by siwuxie095】

时间: 2024-10-14 02:58:27

在Action中获取表单提交数据的相关文章

struts2入门之action获取表单提交数据

action获取表单提交数据,有三种方式: 1.根据ActionContext对象获取: 2.利用ServletActionContext类获取表单数据:(其实就是可以获取HttpServletRequest对象) 3.利用接口注入的方式获取表单数据:实现接口(ServletRequestAware) 其实以上三种方式都是action通过操作域对象来获取数据,和servlet中操作域对象有异曲同工之妙, I.通过ActionContext类获取表单提交数据,代码如下: 1 public clas

Struts2-在action中获取表单提交的参数

1.表单 <form action="<%=path %>/FirstAction" method="post"> <input type="text" name="username"> <input type="submit" name="提交"> </form> 2.action代码 package com.action;

springboot框架中集成thymeleaf引擎,使用form表单提交数据,debug结果后台获取不到数据

springboot框架中集成thymeleaf引擎,使用form表单提交数据,debug结果后台获取不到数据 表单html: <form class="form-horizontal form-material" th:object="${user}" th:action="@{/user/updateOneUserInfo}" method="post"> <input type="hidden

客户端表单提交数据方式与服务器获取数据

表单提交数据的两种方式 表单form的提交有两种方式,一种是get的方法,通过超级链接后面的参数提交过来,一种是post ,通过Form表单提交过来. post方式: <form id="form1" name="form1" method="post" action="login.aspx"> <table width="501" border="0" align=&

前端表单提交数据~php获取表单内容

上图代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <HEAD><meta http-equiv="C

HTML5第8次课堂笔记( 模拟form表单提交数据,xml的解析,jQuery的Ajax方法使用, mui的ajax)

HTML5第8次课堂笔记 1.  模拟form表单提交数据:(get方式) <body> <formmethod="get"action="DataTest7"> <inputtype="text"name="uname"value="yang"id="myname"><br/> <inputtype="password&q

HTTP通信模拟表单提交数据

前面记录过一篇关于http通信,发送数据的文章:http://www.cnblogs.com/hyyq/p/7089040.html,今天要记录的是如何通过http模拟表单提交数据. 一.通过GET请求方式提交:最简单的一种方式 直接在链接后面跟上要提交的数据即可,比如: http://yychf.55555.io/get.do?username=yyc&password=yychf,通过http直接发送.然后在服务器端可以通过request.getParameter()方法来获得参数值.如要获

extjs中form表单提交成功、失败的响应信息

类Ext.form.Action.Submit 处理表单Form数据和返回的response对象的类. 该类的实例仅在表单Form{@link Ext.form.BasicForm#submit 提交}的时候创建. 返回的数据包必须包含一个 boolean 类型的success属性,还有可选地,一个含有无效字段的错误信息的属性 A response packet may contain: ·        success property : Boolean - required. ·     

java 之 servlet如何获取表单的数据

servlet如何获取表单的数据 前端页面通过form表单的形式提交数据 服务端定义servlet接口 public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOExcption { // 定义一个用户信息类 Users u = new User(); String username; String password; Date birthday;