1 | public void service (ServletRequest req, ServletResponse res) |
2 | throws ServletException, IOException |
3 | { res.setContentType ( "text/html" ); |
4 | PrintWriter out = res.getWriter ( ); |
5 | out.println ( "<html>"); |
6 | out.println ( "<head>"); |
7 | out.println ( "<title> A Sample Servlet </title>"); |
8 | out.println ( "</head>"); |
9 | out.println ( "<body>"); |
10 | out.println ( "<h1> A Sample Servlet </h1>"); |
11 | out.println ( "</body>"); |
12 | out.println ( "</html>"); |
13 | } |
14 | } |