Good day,
I have a jsp code as follow:
<fmt:formatDate value="<%= new java.util.Date() %>" pattern="EEEE, dd/MM/yyyy HH:mm:ss" />
Where by the fmt
tag is refering to
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
from com.ibm.ws.webcontainer.jar
.
So the date display in browser will be:
Monday, 07/11/2016 11:04:15
I would like to ask, any way for me to display this day in other country language? For example, in Malaysia, so it will be like:
Isnin, 07/11/2016 11:04:15
.
Additional question, is the Monday
generate from the com.ibm.ws.webcontainer.jar
? Because I search for my whole workspace, but didnt see any Monday
in coding.
Kindly advise.