一.BeanUtils工具的解释

(1)Apache的Commons组件中。提供了一个实用的工具类BeanUtils,利用它可以方便的将表单数据值填充值Bean中;

(2)javax.servlet.ServletRequest.getParameterMap()

在ServletRequest接口中,getParameter()方法的作用在于将client传来的參数封装在一个Map对象中,致谢參数能够通过GET POST

方法提交;

(3)org.apache.commons.beanutils.BeanUtils.populate()

这种方法的作用是将存储在Map中的參数填入给定的一个JavaBean对象中;

BeanUtils.populate(),第一个形參是一个bean对象,也就是表单的JavaBean,第二个形參是一个Map对象。也就是存储有表单圆度的Map对象;

二.举例具体解释

(1)编写一个JavaBean程序类RegForm

package my;
public class RegForm
{
private String userName;
private String password;
private String sect;
private String hobby[];
private String memo; public void setUserName(String s)
{
userName=s;
}
public String getUserName()
{
return userName;
}
public void setPassword(String s)
{
password=s;
}
public String getPassword()
{
return password;
} public void setSect(String s)
{
sect=s;
}
public String getSect()
{
return sect;
} public void setHobby(String s[])
{
hobby=s;
}
public String[] getHobby()
{
return hobby;
}
public void setMemo(String s)
{
memo=s;
}
public String getMemo()
{
return memo;
}
}

(2)新建一个填写数据的表单

<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<!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="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head> <body>
<jsp:useBean id="my" class="my.RegForm" scope="page"/>
<jsp:setProperty name="my" property="*"/> //反射机制将表单自己主动填到‘my’表单中
<br>您的username是:<jsp:getProperty name="my" property="userName"/>
<br>您的口令是: <jsp:getProperty name="my" property="password"/>
<br>您的性别是:<jsp:getProperty name="my" property="sect"/>
<br>您的爱好是:
<%
String h[]=my.getHobby();
if(h!=null)
for(int i=0;i<h.length;i++)
out.print(h[i]);
%>
<br>您的附言是:<jsp:getProperty name="my" property="userName"/>
</body>
</html>

(3)新建一个Servlet程序    reformServlet处理表单

package my;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;
import org.apache.commons.beanutils.*; public class RegFormServlet extends HttpServlet
{
protected void doGet(HttpServletRequest request,HttpServletResponse response)
throws ServletException,java.io.IOException
{
ServletContext application=getServletContext() ;
ServletConfig config=getServletConfig() ;
response.setContentType("text/html;charset=gb2312");
PrintWriter out=response.getWriter();
HttpSession session =request.getSession();
request.setCharacterEncoding("gb2312"); RegForm form=new RegForm();
Map map=request.getParameterMap();
try
{
BeanUtils.populate(form,map);
}catch(Exception e)
{
System.out.println("表单处理出错:"+e);
} out.print("<br>您的姓名是:"+form.getUserName());
out.print("<br>您的口令是:"+form.getPassword());
out.print("<br>您的性别是:"+form.getSect());
out.print("<br>您的爱好是:");
String h[]=form.getHobby();
if(h!=null)
for(int i=0;i<h.length;i++)
out.print(h[i]);
out.print("<br>您的附言是:"+form.getMemo());
} protected void doPost(HttpServletRequest request,HttpServletResponse response)
throws ServletException,java.io.IOException
{
doGet(request,response);
}
}

(4)另一个创建数据的界面

<%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*" errorPage="" %>
<!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="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head> <body>
<form id="form1" name="form1" method="post" action="exam.jsp">
<p>会员注冊信息</p>
<p>username:
<label>
<input name="userName" type="text" id="userName" />
</label>
</p>
<p>口令:
<label>
<input name="password" type="password" id="password" />
</label>
</p>
<p>性别:
<label>
<input name="sect" type="radio" value="男" checked="checked" />
</label>

<label>
<input type="radio" name="sect" value="女" />
</label>
女</p>
<p>爱好:
<label>
<input name="hobby" type="checkbox" id="hobby" value="篮球" />
</label>
篮球
<label>
<input name="hobby" type="checkbox" id="hobby" value="排球" />
</label>
排球
<label>
<input name="hobby" type="checkbox" id="hobby" value="足球" />
</label>
足球</p>
<p>附言:
<label>
<textarea name="memo" id="memo"></textarea>
</label>
<label>
<input type="submit" name="Submit" value="提交" />
</label>
</p>
</form>
</body>
</html>

(5)关于servlet的部署省去过程

(6)ok!

BeanUtils数据封装与表单JavaBean的更多相关文章

  1. JavaWeb -- Struts1 使用示例: 表单校验 防表单重复提交 表单数据封装到实体

    1. struts 工作流程图 超链接 2. 入门案例 struts入门案例: 1.写一个注册页面,把请求交给 struts处理 <form action="${pageContext ...

  2. 利用BeanUtils工具类封装表单数据

    一.BeanUtils工具类的使用 1.首先导入BeanUtils工具类的jar包 commons-beanutils-1.8.0.jar commons-logging-1.1.1.jar 2.se ...

  3. JavaBean+jsp开发模式 --结合form表单 实例

    1.创建form表单 <%@ page language="java" contentType="text/html; charset=UTF-8" pa ...

  4. 异步发送表单数据到JavaBean,并响应JSON文本返回

    1)  提交表单后,将JavaBean信息以JSON文本形式返回到浏览器 <form> 编号:<input type="text" name="id&q ...

  5. SpringMVC表单或Json中日期字符串与JavaBean的Date类型的转换

    SpringMVC表单或Json中日期字符串与JavaBean的Date类型的转换 场景一:表单中的日期字符串和JavaBean的Date类型的转换 在使用SpringMVC的时候,经常会遇到表单中的 ...

  6. Struts2中将表单数据封装到List和Map集合中

    一.将表单数据封装到Map集合中 1.创建MapAction类 import cn.entity.User; import com.opensymphony.xwork2.ActionSupport; ...

  7. 纯js将form表单的数据封装成json 以便于ajax发送

    使用方式: var json = form2Json("formId");//这里的参数是form表单的id值 form2json.js function form2Json(fo ...

  8. form表单数据封装成json格式并提交给服务器

    1.jsp代码,form表单: <form action="#" id="costForm"> <input type="hidde ...

  9. MVC扩展ModelBinder,通过继承DefaultModelBinder把表单数据封装成类作为action参数

    把视图省.市.街道表单数据,封装成一个类,作为action参数.如下: action方法参数类型: namespace MvcApplication1.Models{    public class ...

随机推荐

  1. 在Sharepoint中批量删除大量条目

    在Sharepoint开发中可能需要一次删除成百上千条记录,这时候如果轮询SPList.Items并直接调用该对象的删除方法来删除的话性能极差,会叫你崩溃. 下面介绍一个快速删除大量数据的方法: us ...

  2. Windows Server 2012 R2 服务器管理器介绍和配置使用

    1. 服务管理器是用于管理系统服务的管理工具.一般常用于windows系统,使用这个工具你可以启动.停止服务:设置服务是自动.手动启动或禁用:查看某个服务的相关信息:设置服务以什么用户启动等等(一般包 ...

  3. 我的iOS学习之路(四):动画设置

    在ios的开发过程中,经常需要对视图控件进行变化,如大小,颜色,旋转等,这是如果直接将变化结果呈现出来,就显得不够友好,所以我们通常会使用动画,让用户能够看到变化的过程. 使用动画通常有两种方式,一种 ...

  4. 关于反射的一个小问题---.NetFrameWork版本不一样导致不同的系统的问题

    背景: 近期项目中用到发射,本人的电脑上是安装了.NetFrameWork 4.5,然后用着发射蛮顺溜的,啪啪,三下五除二,项目完成了,然后提交测试了,测试的电脑是虚拟机上安装了xp系统,然后.Net ...

  5. BZOJ 3931: [CQOI2015]网络吞吐量( 最短路 + 最大流 )

    最短路 + 最大流 , 没什么好说的... 因为long long WA 了两次.... ------------------------------------------------------- ...

  6. html的显示消息和留言板

    <div class="inner_content"> <c:forEach items="${notices}" var="n&q ...

  7. bzoj 1046 : [HAOI2007]上升序列 dp

    题目链接 1046: [HAOI2007]上升序列 Time Limit: 10 Sec  Memory Limit: 162 MBSubmit: 3620  Solved: 1236[Submit] ...

  8. HTML+CSS笔记 CSS入门

    简介: </span>年的圣诞节期间,吉多·范罗苏姆为了在阿姆斯特丹打发时间,决心开发一个新的<span>脚本解释程序</span>,作为ABC语言的一种继承. & ...

  9. 使用 Media Center 遥控器(Windows Vista Premium)

    本文适用于安装了 Windows Vista Premium 并附带遥控器的 HP 和 Compaq 台式电脑. 本文简要介绍了三种Windows Media Center 遥控器上每个按钮的功能. ...

  10. 【opengl】OpenGL中三维物体显示在二维屏幕上显示的变换过程

    转自:http://blog.sina.com.cn/s/blog_957b9fdb0100zesv.html 为了说明在三维物体到二维图象之间,需要经过什么样的变换,我们引入了相机(Camera)模 ...