Programming Tutorials

JSP Program to display Date

By: aathishankaran in JSP Tutorials on 2007-02-13  

This program shows you how to create a simple dynamic JSP page that prints the current date and time.

So the following code accomplishes this:

<%@page contentType="text/html" import="java.util.*" %>
<!-- http://www.java-samples.com/jsp -->
<html>
<body>
<p>&nbsp;</p>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" width="460" bgcolor="#EEFFCA">
<tr>
<td width="100%"><font size="6" color="#008000">&nbsp;Date Example</font></td>
</tr>
<tr>
<td width="100%"><b>&nbsp;Current Date and time is:&nbsp; <font color="#FF0000">
<%= new java.util.Date() %>
</font></b></td>
</tr>
</table>
</center>
</div>
</body>
</html>

The main concept in this program is Date() function of the java.util package which returns the current data and time.

In the JSP Declaratives

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

we are importing the java.util package and following JSP Expression code

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





Add Comment

* Required information
1000

Comments (2)

Avatar
New
shivanaiksays...

hi i want to show the Calendar in text field when the user enter into that text box please help me or else mail me

Avatar
New
Morgansays...

You can show a calendar using JavaScript within your JSP check this Show calendar within JSP using JQuery

Most Viewed Articles (in JSP )

Latest Articles (in JSP)