Structure of the Problem Requirements
In this small problem we will learn 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 . Here is the source code of this problem which develop a better understanding for you.
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
![]() |
Date and Time |