How to display date in JSP?

How to create a simple JSP program which displays date on the page?

Thanks

View Answers

May 10, 2017 at 11:27 PM

Hi,

You should import the java.util package:

<%@page contentType="text/html" import="java.util.*" %>

Then use the following code to print the current date:

<%= new java.util.Date() %>

Check complete tutorial at How to Create JSP Page?

Thanks









Related Tutorials/Questions & Answers:
Advertisements