How to convert Large Integer 130552992000000000
into date format?
This is today’s date and timestamp. I tried with
Date d = new Date(130552992000000000L * 1000);
System.out.println("Date : " +d);
But its showing Date : Wed Dec 29 00:28:58 IST 45183249
date which is incorrect and not showing year too.
Thanks in advance.