如何解决struts2日期类型转换
因此要想保证系统一定要正确第对date类型进行转换,就要写一个全局的类型转换类,进行date与string之间的类型转换。
package com.great.util;
import java.text.dateformat;
import java.text.simpledateformat;
import java.util.date;
import java.util.map;
import com.opensymphony.xwork2.conversion.impl.defaulttypeconverter;
public class dateconverter extends defaulttypeconverter {
private static final dateformat[] accept_date_formats = {
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;
}
}
在根目录下创建xwork-conversion.properties文件,并在里面添加下面语句,注册类型转换器
java.util.date=com.great.util.dateconverter
其中的com.great.util.dateconverter是日期转换类包含命名空间的全称。
然后很多人就大功告成了。
而我还没有成功,系统报错
“error (commonslogger.java:27) - conversion registration error”
“java.lang.classnotfoundexception: com.great.util.dateconverter”
注册类型转换器没有成功?
仔细一检查发现“java.util.date=com.great.util.dateconverter”的后面多了一个空格!真相大白了。去掉空格,再次运行,成功!
上一篇: 中华鲟多少钱一斤,中华鲟有哪些营养价值!
下一篇: 最新国际油价是多少,国际油价走势图!