package com.accphr.util; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import org.apache.commons.beanutils.Converter; //自定义日期类型转换器 public class JavaUtilDateConverter implements Converter { private SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); public Object convert(Class type, Object value) { if (null == value || value.toString().trim().equals("")) { return null; } String s = value.toString().trim(); try { Date d = this.format.parse(s); return d; } catch (ParseException e) { throw new RuntimeException("不支持或错误的日期格式:[" + s + "]"); } } }
最近下载更多
twingo0204 LV24
2016年1月6日
最代码官方 LV168
2012年8月22日