How to get current date and time in java
// get current date and time in java using LocalDate.now() method
import java.time.LocalDate;
public class UsingLocalDate
{
public static void main(String[] args)
{
System.out.println(LocalDate.now());
}
}