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

JEECG中修改时间相关自定义定时器

时间:2020-04-01 16:16:04      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:init   转换   dex   params   for   reg   illegal   indexof   datatime   

JEECG中使用,如下:

	@InitBinder
	public void initBinder(ServletRequestDataBinder binder) {
        
		binder.registerCustomEditor(Date.class, new DateConvertEditor());
	}

其中的DateConvertEditor类是JEECG中用于将日期进行转换的类。其主要代码如下:

	private SimpleDateFormat datetimeFormat = new SimpleDateFormat(
			"yyyy-MM-dd HH:mm:ss");
	private SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");	
	public void setAsText(String text) throws IllegalArgumentException {
		if (StringUtils.hasText(text)) {
			try {
				if (text.indexOf(":") == -1 && text.length() == 10) {
					setValue(this.dateFormat.parse(text));
				} else if (text.indexOf(":") > 0 && text.length() == 19) {
					setValue(this.datetimeFormat.parse(text));
				} else if (text.indexOf(":") > 0 && text.length() == 21) {
					text = text.replace(".0", "");
					setValue(this.datetimeFormat.parse(text));

				} else if (text.indexOf(":") > 0 && text.indexOf(".") > 0 && text.length() > 21) {
					text = text.substring(0, text.indexOf("."));
					setValue(this.datetimeFormat.parse(text));
				}else {
					throw new IllegalArgumentException(
							"Could not parse date, date format is error ");
				}
				...

可以看出,其中的datatimeFormat用于处理"yyyy-MM-dd HH:mm:ss"格式的字符串,而dateFormat用于处理"yyyy-MM-dd"

JEECG中修改时间相关自定义定时器

标签:init   转换   dex   params   for   reg   illegal   indexof   datatime   

原文地址:https://www.cnblogs.com/Jeely/p/12613322.html

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