I have the following sourcecode:
<c:set var="runtimeEnd" value="${content.valueList.Promotion[0].value.RuntimeEnd}"/>
which is a number in jsp and stands for a date for example: 1425769140000
how do i access this variable in Java? imean when i do the following it wont even load the page anymore:
<% out.println(${runtimeEnd}); %>
I would like to insert the variable into the following JAVA code to display the date
<% SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd MMMMMMMMM yyyy");
out.println(simpleDateFormat.format(${runtimeEnd})); %>