This example shows how to format Month using Format class. In this program we use a pattern of special characters to Month format.
Month Format Example
This example shows how to format Month using Format class. In this program we use a pattern of special characters to Month format.Description of the code :
SimpleDateFormat() : SimpleDateFormat class use for formatting and parsing dates. It allows for formatting date into text , parsing text into date and normalization.
format() : This method is used for format Date class object into date / time and appends the it into the StringBuffer.
MonthFormat.java
// January
|
Output:
Month : 1
|
Download code