This example uses DateFormat class to display time in Italian.
import java.text.DateFormat;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
Date d1 = new Date();
System.out.println("today is "+ d1.toString());
Locale locItalian = new Locale("it");
DateFormat df = DateFormat.getDateInstance
(DateFormat.FULL, locItalian);
System.out.println("today is "+ df.format(d1));
}
}
Result:
The above code sample will produce the following result.
today is Mon Jun 22 02:33:27 IST 2009
today is luned́ 22 giugno 2009