What is the fastest/most efficient way of converting epoch time to a datetime string, for example a ISO-8601 datetime (one format: 2015-10-25T22:34:51+00:00
) String
?
I know that I can use java.util.Date
as explained in Converting Epoch time to date string but is it actually the fastest?
I am interested in this because I have tens of thousands to millions of epochs to convert to String
form periodically.