DateUtil.java 507 字节
package com.tianbo.util.Date;

import java.text.SimpleDateFormat;
import java.util.Date;

public final class DateUtil {
    private static Date currentDate = new Date();
    private static SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
    private static SimpleDateFormat timesdf = new SimpleDateFormat("yyyyMMddHHmmss");

    public static  String getToday(){
        return sdf.format(currentDate);
    }
    public static String getDDTM(){
        return timesdf.format(currentDate);
    }
}