package servlets; /* * Copyright 2007 Sun Microsystems, Inc. * All rights reserved. You may not modify, use, * reproduce, or distribute this software except in * compliance with the terms of the License at: * http://developer.sun.com/berkeley_license.html */ import java.io.*; import java.util.*; import java.sql.*; import javax.servlet.*; import javax.servlet.http.*; /** * This is a simple example of an HTTP Servlet. It responds to the GET * method of the HTTP protocol. */ public class GreetingServletV2 extends HttpServlet { public void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); // check the API to learn more about this method response.setBufferSize(8192); PrintWriter out = response.getWriter(); out.println("" + "Hello"); out.println( "" + "\"Duke" + "

Hello, my name is Duke. What's yours?

" + "
" + "" + "

" + "" + "" + "
"); String username = request.getParameter("username"); if ((username != null) && (username.length() > 0)) { RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/response"); if (dispatcher != null) { if(username.equals("forward")) //To test both behaviors at once but normally a forward should lead to valid html (head, body, etc.) dispatcher.forward(request, response); else dispatcher.include(request, response); } } out.println(""); out.close(); } public String getServletInfo() { return "The Hello servlet says hello."; } }