Le mostraré tres formas de (a) obtener el campo de minutos 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 suplanta las antiguas clases de fecha y hora agrupadas, 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 & .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);
Salida:
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 );
milisegundos Desde la época: 1289375173771 instantáneo: 2010-11-10T07: 46: 13.771Z salida: 07: 46: 13: 771