Home Quickguide Tomcat Create Web Page with jsp



Create Web Page with jsp
Posted on: July 8, 2008 at 12:00 AM
In this example we will show you how to create first web page on tomcat server. JSP simply application that work with Java inside HTML pages.

Web Page with jsp

     

In this example we will show you how to create first web page on tomcat server. JSP simply application that work with Java inside HTML pages. Now we can take any existing HTML page and we change its extension to "Date.jsp" instead of "Date.html". This one the simply exercise for your first application JSP. The HTML file we used in the previous exercise. After modify file extension from ".html" to ".jsp". Then the application load the new file, with the "date.jsp" extension, in your browser. 


Following example of date will really help you understand a jsp page. 

In this example we are going to display a current date and time on client browser. For this we will create a simple dynamic JSP page with java.util.Date class (<%= new java.util.Date() %>). The java.util.Date class is used to get the current date/time for display on JSP page. 
Start the tomcat server, open a browser window and type the URL : Start the tomcat server, open a browser window and type the URL http://localhost:8080/date.jsp

The code of the program is given below:

<%@page contentType="text/html" import="java.util.*" %> 
<html>
<body>
<p>&nbsp;</p>
<div align="">
<table border="0" cellpadding="0" cellspacing
="0" width="460" bgcolor="#999999">
<tr>
<td width="100%"><font size="6" color
="#800000">&nbsp;Date Example</font></td>
</tr>
<tr>
<td width="100%"><b>&nbsp;Current Date 
and time is:&nbsp; <font color="#0000ff"> 
<%= new java.util.Date() %>
</font></b></td>
</tr>
</table>
</center>
</div>
</body>
</html>

The output of the program is given below:

Related Tags for Create Web Page with jsp:
javahtmlcwebjspidetomcatserverdateapplicationioextensionpagechangethisidappcreatejsshowexamplewithworktopagesexamshexteilitcanlihangimfirstinnomlmsidsidesticajadesagehowppcatxaxampsspatanyplykhtmisirhallmcmpleaexistingandrvsimxtvaxissteathshoavst.jsatiaphatexiicaicapleplndonomo


More Tutorials from this section

Ask Questions?    Discuss: Create Web Page with jsp  

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.