I am getting the Epoch time data as 1376493600
(String).
I want to convert it into Human Readable/Normal Date String (dd-mm-yyyy hh:mm:ss)
format
<fmt:parseDate value="${record.attributes.P_Close_Time}" pattern="dd/MM/yyyy HH:mm:ss" var="date" />
<fmt:formatDate value="${date}" pattern="dd/MM/yyyy HH:mm:ss" />
But I am getting Unparsable Date error in the fmt:parseDate line.
How to convert the epoc time to readable date format as mentioned.