Java: Get seconds since 1970
Java DateTime, Calendar: Exercise-37 with Solution
Write a Java program to get seconds since 1970.
Sample Solution:
Java Code:
public class Exercise37 {
public static void main(String[] args)
{
long seconds = System.currentTimeMillis() / 1000l;
System.out.println("\nSeconds since 1970: "+seconds+"\n");
}
}
Sample Output:
Seconds since 1970: 1498036900
N.B.: The value may be changed accroding to your system date and time.
Pictorial Presentation:
Flowchart:
Java Code Editor:
Improve this sample solution and post your code through Disqus
Previous: Write a Java program to convert a unix timestamp to date in Java.
Next: Write a Java program to calculate the difference between two dates in days.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/java-exercises/datetime/java-datetime-exercise-37.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics