A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Java program to create a LocalDate object from the object of Date class
Q:

Java program to create a LocalDate object from the object of Date class

0

Java program to create a LocalDate object from the object of Date class

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Create a LocalDate object from the object of the Date class and print the result.

Program/Source Code:

The source code to create a LocalDate object from the object of the Date class is given below. The given program is compiled and executed successfully.

// Java program to convert Date object 
// into LocalDate

import java.io.*;
import java.time.*;
import java.util.Date;

class Main {
  public static void main(String args[]) {
    Date date = new Date();

    LocalDate localDate = date.toInstant().atZone(ZoneId.systemDefault()).toLocalDate();

    System.out.println("Local date is: " + localDate);
  }
}

Output:

Day  : 1
Month: APRIL
Year : 2022

Explanation:

In the above program, we created a class Main that contains a static method main(). The main() method is the entry point for the program, here we created an object of the Date class. Then we created the object of LocalDate class using Date class object using toInstant()atZone(), and toLocalDate() methods. After that, we printed the result.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now