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

com.github.endoscope.util.DateUtil Maven / Gradle / Ivy

The newest version!
package com.github.endoscope.util;

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

public class DateUtil {
    public static final SimpleDateFormat DATE_ONLY_GMT;
    public static final SimpleDateFormat DATE_TIME_GMT;

    static {
        TimeZone gmt = TimeZone.getTimeZone("GMT");
        DATE_ONLY_GMT = new SimpleDateFormat("yyyy_MM_dd");
        DATE_ONLY_GMT.setTimeZone(gmt);

        DATE_TIME_GMT = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        DATE_TIME_GMT.setTimeZone(gmt);
    }

    public Date now(){
        return new Date();
    }

    public static Date parseDateTime(String date){
        if( date == null ){
            return null;
        }
        try {
            return DATE_TIME_GMT.parse(date);
        } catch (ParseException e) {
            throw new RuntimeException(e);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy