Java DateFormat SHORT
Syntax
DateFormat.SHORT has the following syntax.
public static final int SHORT
Example
In the following code shows how to use DateFormat.SHORT field.
import java.text.DateFormat;
import java.util.Date;
import java.util.Locale;
/*from www . j a va 2s. c om*/
public class Main {
public static void main(String[] argv) throws Exception {
Locale locale = Locale.ITALIAN;
Date date = new Date();
DateFormat df = DateFormat.getTimeInstance(DateFormat.SHORT, locale);
String s = df.format(date);
System.out.println(s);
}
}
The code above generates the following result.