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

com.taobao.diamond.utils.TimeUtils Maven / Gradle / Ivy

There is a newer version: 3.2.4
Show newest version
package com.taobao.diamond.utils;

import java.sql.Timestamp;
import java.util.Date;

public class TimeUtils {

	public static Timestamp getCurrentTime() {
        Date date = new Date();
        return new Timestamp(date.getTime());
    }
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy