public static String getCurrentTime() {
Date now = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
return sdf.format(now);
}
public static long getCurrentTimeMillis() {
return System.currentTimeMillis();
}
public static String getCurrentTime() {
Date now = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
return sdf.format(now);
}
public static long getCurrentTimeMillis() {
return System.currentTimeMillis();
}