DateFormat.getDateInstance(int style) has the following syntax.
public static final DateFormat getDateInstance(int style)
In the following code shows how to use DateFormat.getDateInstance(int style) method.
import java.text.DateFormat; import java.util.Date; //from w w w . ja va 2s . c o m public class Main { public static void main(String[] args) { Date date = new Date(); String strDate = DateFormat.getDateInstance(DateFormat.DEFAULT).format(date); System.out.println(strDate); strDate = DateFormat.getDateInstance(DateFormat.FULL).format(date); System.out.println(strDate); strDate = DateFormat.getDateInstance(DateFormat.LONG).format(date); System.out.println(strDate); strDate = DateFormat.getDateInstance(DateFormat.SHORT).format(date); System.out.println(strDate); } }
The code above generates the following result.