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

cz.mmsparams.api.utils.TimeFormatter Maven / Gradle / Ivy

package cz.mmsparams.api.utils;

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

public class TimeFormatter
{
    private TimeFormatter()
    {
    }

    public static String format(long millis)
    {
        Date date = new Date(millis);
        SimpleDateFormat formatter = new SimpleDateFormat("HH:mm:ss.SSS");
        return formatter.format(date);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy