public void doGet(HttpServletRequest request, HttpServletResponse response)

#---------------------------------------------#
# Template for Servlet
# 1.1
# 04/05/2003
# Ferret Renaud
#---------------------------------------------#


java.io.IOException
java.io.PrintWriter


javax.servlet.ServletException
javax.servlet.http.HttpServlet
javax.servlet.http.HttpServletRequest
javax.servlet.http.HttpServletResponse


javax.servlet.http.HttpServlet



/**
* Constructor of the object.
*/
public () {
super();
}


 
 

/**
* The doGet method of the servlet.

*
* This method is called when a form has its tag value method equals to get.

* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {


response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.println(
"");
out.println("");
out.println("  A Servlet");
out.println("  ");
out.print("    This is ");
out.print(this.getClass());
out.println(", using the GET method");
out.println("  ");
out.println("");
out.flush();
out.close();
}






/**
* The doPost method of the servlet.

*
* This method is called when a form has its tag value method equals to post.

* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {


response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.println(
"");
out.println("");
out.println("  A Servlet");
out.println("  ");
out.print("    This is ");
out.print(this.getClass());
out.println(", using the POST method");
out.println("  ");
out.println("");
out.flush();
out.close();
}






/**
* The doPut method of the servlet.

*
* This method is called when a HTTP put request is received.

* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doPut(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {


// Put your code here
}






/**
* The doDelete method of the servlet.

*
* This method is called when a HTTP delete request is received.

* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doDelete(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {


// Put your code here
}






/**
* Initialization of the servlet.

*
* @throws ServletException if an error occurs
*/
public void init() throws ServletException {
// Put your code here
}






/**
* Destruction of the servlet.

*/
public void destroy() {
super.destroy(); // Just puts "destroy" string in log
// Put your code here
}






/**
* Returns information about the servlet, such as 
* author, version, and copyright. 
*
* @return String information about this servlet
*/
public String getServletInfo() {
return "This is my default servlet created by Eclipse";
}


你可能感兴趣的:(public void doGet(HttpServletRequest request, HttpServletResponse response))