Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.time.LocalDateTime;
import java.time.Month;
import java.time.format.DateTimeFormatter;
import java.time.format.FormatStyle;
import java.util.Locale;

public class Main {
    public static void main(String[] args) {
        // 2014-04-01 10:45
        LocalDateTime dateTime = LocalDateTime.of(2014, Month.APRIL, 1, 10, 45);

        // using short german date/time formatting (01.04.14 10:45)
        DateTimeFormatter formatter = DateTimeFormatter.ofLocalizedDateTime(FormatStyle.SHORT)
                .withLocale(new Locale("de"));
        String germanDateTime = dateTime.format(formatter);

        System.out.println(germanDateTime);
    }
}