Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Servlets and JSP ====== ===== Servlets ===== A simple "HelloWorld" servlet, that also prints the current date. <code java> import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class HelloWorld extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { res.setContentType("text/html"); PrintWriter out = res.getWriter(); out.println("<HTML>"); out.println("<HEAD><TITLE>Hello World</TITLE></HEAD>"); out.println("<BODY>"); out.println("<H1>Hello World</H1>"); out.println("Today is: " + (new java.util.Date().toString()) ); out.println("</BODY></HTML>"); } // doGet } // HelloWorld </code> In order to run it, do the following: - Place it in a file, HelloWorld.java - Compile it. - Place the resulting HelloWorld.class file in the "servlets" directory. - Run it by pointing browser to: http://server.address/servlets/HelloWorld ===== JSP ===== The same page as above using JSP looks as shown below: <code> <HTML> <HEAD> <TITLE>Hello World</TITLE> </HEAD> <BODY> <H1>Hello World</H1> Today is: <%= new java.util.Date().toString() %> </BODY> </HTML> </code> In order to run it, do the following: - Place it in a file, HelloWorld.jsp in the same directory as your .html files - Run it by pointing browser to: http://server.address/~youraccount/HelloWorld.jsp docs/programming/jsp/servlets_and_jsp.txt Last modified: 2008/08/03 00:25by 127.0.0.1