¿Convertir la fecha y hora entera en un problema de fecha y hora real? JAVA [duplicado]

Aug 17 2020

así que tengo este problema al convertir el formato Integer DateTime al formato DateTime normal en Java. Tengo esta variable int DateTime, por ejemplo, es: "/ Date (1484956800000) /". Y estoy tratando de convertirlo a la fecha y hora normal y mostrarlo en la pantalla ...

Intenté así ...

   String dateAsText = new SimpleDateFormat("MM-dd HH:mm")
                .format(new Date(Integer.parseInt(deals.getDate_time())  * 1000L));

// setting my textView with the string dateAsText
       holder.Time.setText(dateAsText);

Respuestas

1 LiveandLetLive Aug 17 2020 at 15:08

Le sugiero que deje de usar la java.utilAPI de fecha y hora obsoleta y propensa a errores y SimpleDateFormat. Cambie a la API de fecha y hora moderna java.time y la API de formato correspondiente ( java.time.format). Obtenga más información sobre la API de fecha y hora moderna de Trail: Date Time .

import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;

public class Main {
    public static void main(String[] args) {
        // Obtain an instance of Instant using milliseconds from the epoch of
        // 1970-01-01T00:00:00Z
        Instant instant = Instant.ofEpochMilli(1484956800000L);
        System.out.println(instant);

        // Specify the time-zone
        ZoneId myTimeZone = ZoneId.of("Europe/London");

        // Obtain ZonedDateTime out of Instant
        ZonedDateTime zdt = instant.atZone(myTimeZone);

        // Obtain LocalDateTime out of ZonedDateTime
        // Note that LocalDateTime throws away the important information of time-zone
        LocalDateTime ldt = zdt.toLocalDateTime();
        System.out.println(ldt);

        // Custom format
        String dateAsText = ldt.format(DateTimeFormatter.ofPattern("MM-dd HH:mm"));
        System.out.println(dateAsText);
    }
}

Salida:

2017-01-21T00:00:00Z
2017-01-21T00:00
01-21 00:00

Si aún desea utilizar el legado mal diseñado java.util.Date, puede hacerlo de la siguiente manera:

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

public class Main {
    public static void main(String[] args) {
        Date date = new Date(1484956800000L);
        System.out.println(date);

        // Custom format
        String dateAsText = new SimpleDateFormat("MM-dd HH:mm").format(date);
        System.out.println(dateAsText);
    }
}

Salida:

Sat Jan 21 00:00:00 GMT 2017
01-21 00:00