Scala program to set datetime using setTime() method

Here, we are going to learn how to set datetime using setTime() method in Scala programming language?
Submitted by Nidhi, on June 01, 2021 [Last updated : March 11, 2023]

Scala - Date.setTime() Method Example

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.

Scala code to demonstrate the example of Date.setTime() method

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.

Scala Date & Time Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.