How to convert epoch time to normal time?
Have a look at the DateTime static methods. You can do it as follows:
DateTime dt = DateTime.newInstance(1385423439 * 1000);
Have a look at the DateTime static methods. You can do it as follows:
DateTime dt = DateTime.newInstance(1385423439 * 1000);