Java SimpleDateFormat .toLocalizedPattern ()
Syntax
SimpleDateFormat.toLocalizedPattern() has the following syntax.
public String toLocalizedPattern()
Example
In the following code shows how to use SimpleDateFormat.toLocalizedPattern() method.
import java.text.SimpleDateFormat;
import java.util.Date;
// w w w.j a va 2s . co m
public class Main {
public static void main(String[] args) throws Exception {
SimpleDateFormat formatter = new SimpleDateFormat();
String date = formatter.format(new Date());
System.out.println(formatter.toLocalizedPattern());
System.out.println("date = " + date);
}
}
The code above generates the following result.