How to Find Current Date and Time in Java

Java has builtin Date Class , we Just create its instance and then generate it with the help of tostring() method.

Source Code


package com.ancodingpoint.www;

import java.util.Date;
import java.util.Scanner;
public class Find_Date
{
 public static void main(String[] args)
 {
  
        Date date = new Date ();    // java has buliting Date class
        System.out.println(" This Method will show current Date & Time \n " + date.toString());
                
           }
}

Output of the Program

Java Programming


Share on Google Plus

About Asad

Asad Niazi is Software Engineer , Programmer, Web Developer and a young mentor of BloggersTown and PProgramming. Asad Love to writes about Technology, Programming, Blogging and make money online.

1 comments:

  1. very good ideas.. i've read this and i learn new things .. FOR THOSE who doesnt visit this website you should try to read.. tnks

    ReplyDelete