Java Calendar SHORT
Syntax
Calendar.SHORT has the following syntax.
public static final int SHORT
Example
In the following code shows how to use Calendar.SHORT field.
//from ww w. j a v a 2 s .c om
import java.util.Calendar;
import java.util.Locale;
public class Main {
public static void main(String[] args) {
Calendar now = Calendar.getInstance();
Locale locale = Locale.getDefault();
String n = now.getDisplayName(Calendar.DAY_OF_WEEK, Calendar.SHORT, locale);
System.out.printf(n);
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »