Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-JSR-5
-
None
-
windows xp Tomcat 5.5.12
Description
I want to use for example java.text.DateFormat. and Date object
e.g
<%
DateFormat fmt = new SimpleDateFormat("dd.MM.yyyy"); //01.01.2006
%>
Today is <%=fmt.format(new Date())%>
i must somehow import a namespace java.text.*;
How can i do this ?