Java DateFormat.getInstance()
Syntax
DateFormat.getInstance() has the following syntax.
public static final DateFormat getInstance()
Example
In the following code shows how to use DateFormat.getInstance() method.
//from ww w .ja v a 2 s . c om
import java.text.DateFormat;
import java.util.Date;
public class Main {
public static void main(String[] argv) throws Exception {
DateFormat dateFormat = DateFormat.getInstance();
String s = dateFormat.format(new Date());
System.out.println(s);
}
}
The code above generates the following result.