Java: Convert a unix timestamp to date
Java DateTime, Calendar: Exercise-36 with Solution
Write a Java program to convert a Unix timestamp to a date.
Sample Solution:
Java Code:
import java.util.*;
import java.text.*;
public class Exercise36 {
public static void main(String[] args)
{
//Unix seconds
long unix_seconds = 1372339860;
//convert seconds to milliseconds
Date date = new Date(unix_seconds*1000L);
// format of the date
SimpleDateFormat jdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss z");
jdf.setTimeZone(TimeZone.getTimeZone("GMT-4"));
String java_date = jdf.format(date);
System.out.println("\n"+java_date+"\n");
}
}
Sample Output:
2013-06-27 09:31:00 GMT-04:00
Pictorial Presentation:
Flowchart:
Java Code Editor:
Improve this sample solution and post your code through Disqus
Previous: Write a Java program to extract date, time from the date string.
Next: Write a Java program to get seconds since 1970.
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-36.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics