//自定义日期类型转换器
public class DateConverter extends StrutsTypeConverter {
private final DateFormat[] sdf={
new SimpleDateFormat("yyyy年MM月dd日"),
new SimpleDateFormat("yyyy-MM-dd"),
new SimpleDateFormat("yyyy/MM/dd"),
new SimpleDateFormat("yyyy.MM.dd"),
new SimpleDateFormat("yyMMdd"),
new SimpleDateFormat("MM/dd/yy")
};