All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.y3tu.tool.excel.convert.TimeConvert Maven / Gradle / Ivy

package com.y3tu.tool.excel.convert;


import com.y3tu.tool.core.time.DateFormatUtil;

/**
 * 时间转换
 *
 * @author y3tu
 * @date 2018/4/6
 */
public class TimeConvert implements ExportConvert {
    @Override
    public String handler(Object val) {
        try {
            if (val == null) {
                return "";
            } else {
                return DateFormatUtil.formatStrToStr("yyyy-MM-dd HH:mm:ss",val.toString());
            }
        } catch (Exception e) {
            e.printStackTrace();
            return "";
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy