Ganzzahlige Datumszeit in echtes Datums- / Uhrzeitproblem umwandeln? JAVA [Duplikat]
Daher habe ich dieses Problem beim Konvertieren des Integer DateTime-Formats in das normale DateTime-Format in Java. Ich habe diese Variable int DateTime, zum Beispiel ist es: "/ Date (1484956800000) /". Und ich versuche es in normale Datums- und Uhrzeitangaben umzuwandeln und auf dem Bildschirm anzuzeigen ...
Ich habe es so versucht ..
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);
Antworten
Ich schlage vor , Sie aufhören mit dem veralteten und fehleranfällige java.utilDatum-Zeit - API und SimpleDateFormat. Wechseln Sie zur modernen java.time Datums- / Uhrzeit-API und der entsprechenden Formatierungs-API ( java.time.format). Weitere Informationen zur modernen Datums- / Uhrzeit-API finden Sie unter 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);
}
}
Ausgabe:
2017-01-21T00:00:00Z
2017-01-21T00:00
01-21 00:00
Wenn Sie das schlecht gestaltete Erbe weiterhin verwenden möchten java.util.Date, können Sie dies wie folgt tun:
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);
}
}
Ausgabe:
Sat Jan 21 00:00:00 GMT 2017
01-21 00:00