Link to home
Start Free TrialLog in
Avatar of KenTan85
KenTan85

asked on

Get system time and date in JSP

How to I get system time and date in jsp???
Avatar of ofkr
ofkr
Flag of Singapore image

<%@ page import="java.text.*,java.util.*" session="false"%>
<%!
   DateFormat fmt = new SimpleDateFormat("hh:mm:ss aa");
   String currenttime = fmt.format(new Date());
%>
current time is <%= currenttime %>
Avatar of KenTan85
KenTan85

ASKER

DateFormat cannot be resolved to a Type

I am having this error
ASKER CERTIFIED SOLUTION
Avatar of ofkr
ofkr
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial