mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
468 B
15 lines
468 B
5 months ago
|
public class ExerciseRunner {
|
||
|
public static void main(String[] args) {
|
||
|
DateFormatter df = new DateFormatter(1656374400, "DD/MM/YYYY");
|
||
|
System.out.println(df.getFormattedDate());
|
||
|
|
||
|
df.setFormat("dd.MM.yyyy");
|
||
|
System.out.println(df.getFormattedDate());
|
||
|
|
||
|
df.setDate(1672531200);
|
||
|
System.out.println(df.getFormattedDate());
|
||
|
|
||
|
df.setFormat("DD month yyyy");
|
||
|
System.out.println(df.getFormattedDate());
|
||
|
}
|
||
|
}
|