码迷,mamicode.com
首页 > 其他好文 > 详细

Struts2格式化日期

时间:2015-05-22 11:36:11      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

package com.yami.util;

import com.opensymphony.xwork2.conversion.impl.DefaultTypeConverter;

import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Map;

/**
 * Created by hackcoder on 2015/5/22.
 */
public class DateConverter extends DefaultTypeConverter {
    private static final DateFormat[] ACCEPT_DATE_FORMATS = {
            new SimpleDateFormat("MM/dd/yyyy"),
            new SimpleDateFormat("dd/MM/yyyy"),
            new SimpleDateFormat("yyyy-MM-dd"),
            new SimpleDateFormat("yyyy/MM/dd") }; //支持转换的日期格式

    @Override
    public Object convertValue(Map context, Object value, Class toType) {
        if (toType == Date.class) {  //浏览器向服务器提交时,进行String to Date的转换
            Date date = null;
            String dateString = null;
            String[] params = (String[])value;
            dateString = params[0];//获取日期的字符串
            for (DateFormat format : ACCEPT_DATE_FORMATS) {
                try {
                    return format.parse(dateString);//遍历日期支持格式,进行转换
                } catch(Exception e) {
                    continue;
                }
            }
            return null;
        }
        else if (toType == String.class) {   //服务器向浏览器输出时,进行Date to String的类型转换
            Date date = (Date)value;
            return new SimpleDateFormat("yyyy-MM-dd").format(date);//输出的格式是yyyy-MM-dd
        }

        return null;
    }

    public static void main(String[] args) throws ParseException {
        String str = "05/29/2015";
        DateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy");
        System.out.println(dateFormat.parse(str));
    }
}



添加配置文件:xwork-conversion.properties

java.util.Date=com.yami.util.DateConverter

struts就能转化前端的日期字符串。

Struts2格式化日期

标签:

原文地址:http://blog.csdn.net/hackcoder/article/details/45913883

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!