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

com.quhaodian.workflow.data.util.DateFormat Maven / Gradle / Ivy

There is a newer version: 1.8.3
Show newest version
package com.quhaodian.workflow.data.util;

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

/**
 * Created by ada on 2016/11/4.
 */
public class DateFormat {
    private  static SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd");

    public static  String format(Date date){
        return  simpleDateFormat.format(date);
    }

    public static String formatTime(Date date){
        SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        return  df.format(date);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy