Create java Date from specific time example : Date « Data Type « Java
- Java
- Data Type
- Date
Create java Date from specific time example
import java.util.Date;
public class Main {
public static void main(String[] args) {
Date d = new Date(365L * 24L * 60L * 60L * 1000L);
System.out.println(d);
}
}
Related examples in the same category