calvinfungcn
4/19/2019 - 3:52 AM

日期格式化显示

/*
参数pattern注意大小写:
年yyyy
月MM
日dd
时HH
分mm
秒ss
毫秒SS
*/

public static String getDateStr(Timestamp timestamp) {
    if (timestamp != null) {
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd", Locale.CHINA);
        return sdf.format(timestamp);
    }

    return "";
}