This example shows how to display the current date and time using
Calender.getInstance() method of Calender class and fmt.format() method
of Formatter class.
Wed Aug 27 23:08:30 GMT+05:30 2014
import java.util.Calendar; import java.util.Formatter; public class MainClass{ public static void main(String args[]){ Formatter fmt = new Formatter(); Calendar cal = Calendar.getInstance(); fmt = new Formatter(); fmt.format("%tc", cal); System.out.println(fmt); } }
Result:
The above code sample will produce the following result.The result will change depending upon the current system date and timeWed Aug 27 23:08:30 GMT+05:30 2014
No comments:
Post a Comment