Display time in Italian
Language
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));
}
}
No comments:
Post a Comment