The Java Date setTime(long time) method sets this Date to show time milliseconds after January 1, 1970 00:00:00 GMT.
DeclarationFollowing is the declaration for java.util.Date.setTime() method
public void setTime(long time)Parameters
time − the number of milliseconds
Return ValueThe method does not return any value.
ExceptionNA
Setting Date Based on Time Elapsed Since January 1, 1970 00:00:00 GMT ExampleThe following example shows the usage of Java Date setTime() method. We're creating a date instance and using setTime() we've updated the date by setting 10000 ms after 1970. The updated date is printed.
package com.tutorialspoint; import java.util.Date; public class DateDemo { public static void main(String[] args) { // create a date Date date = new Date(92, 1, 10); // set the time for 10000 milliseconds after // january 1, 1970 00:00:00 gmt. date.setTime(10000); // print the result System.out.println("Time after setting: " + date.toString()); } }Output
Let us compile and run the above program, this will produce the following result −
Time after setting: Thu Jan 01 05:30:10 IST 1970
java_util_date.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4