Berechnungen und erste Klasse hinzugefügt
This commit is contained in:
parent
c31b4ceab5
commit
0155131945
BIN
Berechnungen.ods
Normal file
BIN
Berechnungen.ods
Normal file
Binary file not shown.
16
src/main/java/info/peper/vz/rest/ReadDbMain.java
Normal file
16
src/main/java/info/peper/vz/rest/ReadDbMain.java
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
package info.peper.vz.rest;
|
||||||
|
|
||||||
|
import java.time.Instant;
|
||||||
|
import java.time.OffsetDateTime;
|
||||||
|
import java.time.format.DateTimeFormatter;
|
||||||
|
import java.time.temporal.TemporalAccessor;
|
||||||
|
|
||||||
|
public class ReadDbMain {
|
||||||
|
|
||||||
|
public static void main(String[] args) throws Exception {
|
||||||
|
final DateTimeFormatter dtf = DateTimeFormatter.ISO_LOCAL_DATE_TIME;
|
||||||
|
System.out.println(dtf.format(OffsetDateTime.now()));
|
||||||
|
final TemporalAccessor test = dtf.parse("2025-02-22T00:00:00");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user