Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.text.DateFormat;
import java.util.Date;
import java.util.Locale;

public class Main {
    public static void main(String[] argv) throws Exception {

        Locale locale = Locale.ITALIAN;
        Date date = new Date();

        String s = DateFormat.getTimeInstance(DateFormat.SHORT, locale).format(date);
        System.out.println(s);
    }
}