I am using unix timestamp to store the purchase date in my application. sample data: 1371463066
I want to do some manipulation based on the difference in number of days and current day timestamp. for example: If the number of days between the purchase date and current date is 5 days, then send an email regarding feedback again.
how to get the difference in days between two timestamps using java?