Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java DateTime, Calendar Exercises: Convert a unix timestamp to date in Java

Java DateTime, Calendar: Exercise-36 with Solution

Write a Java program to convert a unix timestamp to date in Java.

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:

Java Exercises: Java DateTime, Calendar Exercises - Convert a unix timestamp to date in Java.

Flowchart:

Flowchart: Java DateTime, Calendar Exercises - Convert a unix timestamp to date in Java

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.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe