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 get a date from milliseconds using Date() constructor
Q:

Java program to get a date from milliseconds using Date() constructor

0

Java program to get a date from milliseconds using Date() constructor

All Answers

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

Program/Source Code:

The source code to get a date from milliseconds using the Date() constructor is given below. The given program is compiled and executed successfully.

// Java program to get a date from milliseconds 
// using Date() constructor

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Date date = new Date(732153600000L);
    System.out.println("Date: " + date);
  }
}

Output:

Date: Mon Mar 15 00:00:00 GMT 1993

Explanation:

In the above program, we imported "java.util.*" package to use the Date class. Here, 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 Date class with specified milliseconds. Then we printed the corresponding date.

 

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