“Java bekommen Datum in UTC” Code-Antworten

Java bekommen Datum in UTC

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

Java bekommen Datum in 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

Ähnliche Antworten wie “Java bekommen Datum in UTC”

Fragen ähnlich wie “Java bekommen Datum in UTC”

Weitere verwandte Antworten zu “Java bekommen Datum in UTC” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen