Home Jsp JSP date example



JSP date example
Posted on: January 30, 2005 at 12:00 AM
JSP date example JSP Date Example Till now you learned about the JSP syntax, now I will show you how to create a simple dynamic JSP page that prints the current date and time. So the following code accomplish this: <%@page contentType="text/html"

JSP date example

        

Till now you learned about the JSP syntax, now I will show you how to create a simple dynamic JSP page that prints the current date and time. So the following code accomplish this:

 

 

 

 

 

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

<!--

http://www.roseindia.net/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 heart of this example 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() %>

prints the current date on the page.

  Execute the example.
  Download the  code

Related Tags for JSP date example:
.netjavahtmlchttpjsptabletextdatedatatimedivfunctionimportfuniodownloadloadsizecolorprinttypefontpageorderexpressionexecportcontentnewwidthreturnborderintthisidpaddingportingcellpackageexetabcenterjstexexampleexecuteuncaddwwwexpressdeclarativeexamspacingcigcssiearexteilttyalignimportinglslipeimartcincecellsentercurrentcontenttypeinmlbodyaddinaddingmnttrnetoscaddnetosjpackadclestdfuncagemepadackdodowncutxawhichxampsurnxespeeesscolatpacklsphtmisimellivmplpressprefollowdiaeaandarcodcodecellpaddingcellspacingrtxpxtutilwidwingvautittzssrirdrenthavbspababl6atieclpleplprndodeonolonl


More Tutorials from this section

Ask Questions?    Discuss: JSP date example   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.