JAVA日期Date格式转corn表达式
作者:互联网
/*** * 日期转corn表达式 * @param date 日期 * @return */ public static String getCron(Date date){ String dateFormat="ss mm HH dd MM ? yyyy"; SimpleDateFormat sdf = new SimpleDateFormat(dateFormat); String corn = null; if (date != null) { corn = sdf.format(date); } return corn; }
标签:JAVA,String,dateFormat,corn,SimpleDateFormat,date,Date,null 来源: https://www.cnblogs.com/pxblog/p/14992923.html