Formatting and Parsing a Time for a Locale Using Default Formats
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);
}
}
Related examples in the same category