xxxxxxxxxx
import java.util.Date;
public class DateTimeExample {
public static void main(String[] args) {
// Create a new Date object
Date currentDate = new Date();
// Output the current date and time
System.out.println("Current Date and Time: " + currentDate);
}
}