In this section, you will learn to convert a long into a date format. Java provides some methods and APIs to solved it.
Convert Long to Date
In this section, you will learn to convert a long into a date format. Java provides some methods and APIs to solved it.
Description of program:
This example helps you in converting a long value into a Date. The getDateInstance() method is a time formatter with the given formatting style for the default locale. And the getTimeInstance(int style) method is used to get the time formatter with the given formatting style for the default locale. Here style gives the formatting style.
Some other styles are:
- FULL
- LONG
- MEDIUM
- SHORT
- DEFAULT
[Note: Its value is MEDIUM.]
Here is the code of program:
import java.util.*;
|
Output of this program:
C:\date>javac LongToDate.java C:\date>java LongToDate June 12, 2007 |