“Java obtenga fecha en UTC” Código de respuesta

Java obtenga fecha en UTC

OffsetDateTime now = OffsetDateTime.now(ZoneOffset.UTC);
System.out.println(now);
Gifted Grebe

Java obtenga fecha en UTC

private static Date getCurrentUtcTime() throws ParseException {
    SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MMM-dd HH:mm:ss");
    simpleDateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
    SimpleDateFormat localDateFormat = new SimpleDateFormat("yyyy-MMM-dd HH:mm:ss");
    return localDateFormat.parse( simpleDateFormat.format(new Date()) );
}
Gifted Grebe

Respuestas similares a “Java obtenga fecha en UTC”

Preguntas similares a “Java obtenga fecha en UTC”

Más respuestas relacionadas con “Java obtenga fecha en UTC” en Java

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código