Solución:
Prueba esto:
Date date = new Date(logEvent.timeSTamp);
DateFormat formatter = new SimpleDateFormat("HH:mm:ss.SSS");
formatter.setTimeZone(TimeZone.getTimeZone("UTC"));
String dateFormatted = formatter.format(date);
Consulte SimpleDateFormat para obtener una descripción de otras cadenas de formato que acepta la clase.
Consulte el ejemplo ejecutable con una entrada de 1200 ms.
long millis = durationInMillis % 1000;
long second = (durationInMillis / 1000) % 60;
long minute = (durationInMillis / (1000 * 60)) % 60;
long hour = (durationInMillis / (1000 * 60 * 60)) % 24;
String time = String.format("%02d:%02d:%02d.%d", hour, minute, second, millis);
Le mostraré tres formas de (a) obtener el campo de minutos a partir de un valor largo y (b) imprimirlo usando el formato de fecha que desee. Uno usa java.util.Calendar, otro usa Joda-Time y el último usa el marco java.time integrado en Java 8 y versiones posteriores.
El marco java.time reemplaza las antiguas clases de fecha y hora empaquetadas y está inspirado en Joda-Time, definido por JSR 310 y ampliado por el proyecto ThreeTen-Extra.
El marco java.time es el camino a seguir cuando se usa Java 8 y versiones posteriores. De lo contrario, como Android, use Joda-Time. Las clases java.util.Date/.Calendar son notoriamente problemáticas y deben evitarse.
java.util.Date y .Calendar
final long timestamp = new Date().getTime();
// with java.util.Date/Calendar api
final Calendar cal = Calendar.getInstance();
cal.setTimeInMillis(timestamp);
// here's how to get the minutes
final int minutes = cal.get(Calendar.MINUTE);
// and here's how to get the String representation
final String timeString =
new SimpleDateFormat("HH:mm:ss:SSS").format(cal.getTime());
System.out.println(minutes);
System.out.println(timeString);
Joda-Time
// with JodaTime 2.4
final DateTime dt = new DateTime(timestamp);
// here's how to get the minutes
final int minutes2 = dt.getMinuteOfHour();
// and here's how to get the String representation
final String timeString2 = dt.toString("HH:mm:ss:SSS");
System.out.println(minutes2);
System.out.println(timeString2);
Producción:
24
09: 24: 10: 254
24
09: 24: 10: 254
java.time
long millisecondsSinceEpoch = 1289375173771L;
Instant instant = Instant.ofEpochMilli ( millisecondsSinceEpoch );
ZonedDateTime zdt = ZonedDateTime.ofInstant ( instant , ZoneOffset.UTC );
DateTimeFormatter formatter = DateTimeFormatter.ofPattern ( "HH:mm:ss:SSS" );
String output = formatter.format ( zdt );
System.out.println ( "millisecondsSinceEpoch: " + millisecondsSinceEpoch + " instant: " + instant + " output: " + output );
milisegundosDesdeEpoch: 1289375173771 instant: 2010-11-10T07: 46: 13.771Z salida: 07: 46: 13: 771