Q:

Scala program to set datetime using setTime() method

belongs to collection: Scala Date & Time Programs

0

Here, we will create an object of the Date class. Then we will set the date-time using setTime(). The setTime() method accepts date time in milliseconds. After that, we will print the updated DateTime on the console screen.

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 set date-time using the setTime() method is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to set datetime using setTime() method

import java.util.Date;

object Sample {
  def main(args: Array[String]) {
    var date = new Date();

    System.out.println("Date before setTime() method:\n" + date);
    date.setTime(304687433443L);
    System.out.println("Date after setTime() method:\n" + date);
  }
}

Output:

Date before setTime() method:
Tue Jun 01 05:14:18 GMT 2021
Date after setTime() method:
Tue Aug 28 11:23:53 GMT 1979

Explanation:

Here, we used an object-oriented approach to create the program. And, we imported the Date class using the below statement,

import java.util.Date;

Then we created a singleton object Sample and defined the main() function. The main() function is the entry point for the program.

In the main() function, we created an object of the Date class, and then we set the date-time into the created object using the setTime() method. After that, we printed the updated date on the console screen.

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

total answers (1)

Scala program to find the difference between the t... >>
<< Scala program to demonstrate the before() method o...