Java: Get seconds since 1970
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.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics