首页 > 代码库 > 数据类型转换(日期格式转换)

数据类型转换(日期格式转换)

首先我们先去配置一个自定义类型转换器

public class Dateconverter extends StrutsTypeConverter{	   //将前台获取到的值转换成Date类型	   private final DateFormat[] dfs={			   new SimpleDateFormat("yyyy/MM/dd"),			   new SimpleDateFormat("yyyy-MM-dd"),			   new SimpleDateFormat("yyyy年MM月dd日"),			   new SimpleDateFormat("yyyy.MM.dd"),			   new SimpleDateFormat("yyyyMMdd"),	   };		/**	 * String类转换成特定的类	 * 用于前台传值到后台	 */
     // String[] values 表示从表单传过来的相同名字的字符串数组 @Override // 前台创来的值 public Object convertFromString(Map context, String[] values, Class toType) { String value=http://www.mamicode.com/(String)values[0];>     //   Object o表进通过convertFromString方法转换成的自定义类型 @Override public String convertToString(Map context, Object obj) { return new SimpleDateFormat("yyyy-MM-dd").format(obj); }}

抽象类StrutsTypeConverter继承了DefaultTypeConverter接口,有如下方法:

 

abstract ObjectconvertFromString(Map context,String[] values, Class toClass) 
          Converts one or more String values to the specified class.
abstract StringconvertToString(Map context,Object o) 
          Converts the specified object to a String.
ObjectconvertValue(Map context,Object o, Class toClass)

 

StrutsTypeConverter简化了类型转换代码的编写,StrutsTypeConverter继承DefaultTypeConverter,提供了两个抽象的方法convertFromString()和convertToString,分别表示从页面的字符串转换为后台对象以及从后台对象转为页面的字符串,我们只需要实现这两个抽象方法即可实现类型转换。

 

接下来我们需要创建一个全局类型转换:

    在src目录下新建xwork-conversion.properties(该名称固定)。该文件的内容是待转换的类=转换器的名字如:com.struts2.bean.User = cm.struts2.converter.UserConverter。

然后就是jsp页面:

一:上传页面

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%><%@ taglib uri="/struts-tags" prefix="s" %><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>  <head>    <base href="http://www.mamicode.com/">        <title>My JSP ‘index.jsp‘ starting page</title>	<meta http-equiv="pragma" content="no-cache">	<meta http-equiv="cache-control" content="no-cache">	<meta http-equiv="expires" content="0">    	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">	<meta http-equiv="description" content="This is my page">	<!--	<link rel="stylesheet" type="text/css" href="http://www.mamicode.com/styles.css">	-->  </head>    <body>  <s:fielderror/>   <form action="AddUser" method="post">   	姓名:<input type="text" name="user.name"/><br/>   	年龄:<input type="text" name="user.age"/><br/>   	出生日期:<input type="text" name="user.birthday"/><br/>   	<input type="submit" value="http://www.mamicode.com/提交"/>   </form>  </body></html>

二:成功页面

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%><%@ taglib uri="/struts-tags" prefix="s" %><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>  <head>    <base href="http://www.mamicode.com/">        <title>My JSP ‘success.jsp‘ starting page</title>     </head>    <body>	<s:property value="http://www.mamicode.com/user.birthday"/>  </body></html>

  jsp里的代码我就不多过多的解释了,大家都懂!!!!

我们来看一下执行结果:

上传页面

技术分享

成功页面

技术分享

谢谢大家!!!!!!!!!!!!!!!!!!!!!!!!

请大家多多关注

 

数据类型转换(日期格式转换)