AdminServlet.java.svn-base
上传用户:cdpainuo
上传日期:2022-07-12
资源大小:5257k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. package com.appspot.cindyblog.servlet;
  2. import java.io.IOException;
  3. import java.io.PrintWriter;
  4. import javax.servlet.ServletException;
  5. import javax.servlet.http.HttpServlet;
  6. import javax.servlet.http.HttpServletRequest;
  7. import javax.servlet.http.HttpServletResponse;
  8. public class AdminServlet extends HttpServlet {
  9. /**
  10.  * Constructor of the object.
  11.  */
  12. public AdminServlet() {
  13. super();
  14. }
  15. /**
  16.  * The doGet method of the servlet. <br>
  17.  *
  18.  * This method is called when a form has its tag value method equals to get.
  19.  * 
  20.  * @param request the request send by the client to the server
  21.  * @param response the response send by the server to the client
  22.  * @throws ServletException if an error occurred
  23.  * @throws IOException if an error occurred
  24.  */
  25. public void doGet(HttpServletRequest request, HttpServletResponse response)
  26. throws ServletException, IOException {
  27. response.setContentType("text/html");
  28. PrintWriter out = response.getWriter();
  29. out
  30. .println("<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">");
  31. out.println("<HTML>");
  32. out.println("  <HEAD><TITLE>A Servlet</TITLE></HEAD>");
  33. out.println("  <BODY>");
  34. out.print("    This is ");
  35. out.print(this.getClass());
  36. out.println(", using the GET method");
  37. out.println("  </BODY>");
  38. out.println("</HTML>");
  39. out.flush();
  40. out.close();
  41. }
  42. /**
  43.  * The doPost method of the servlet. <br>
  44.  *
  45.  * This method is called when a form has its tag value method equals to post.
  46.  * 
  47.  * @param request the request send by the client to the server
  48.  * @param response the response send by the server to the client
  49.  * @throws ServletException if an error occurred
  50.  * @throws IOException if an error occurred
  51.  */
  52. public void doPost(HttpServletRequest request, HttpServletResponse response)
  53. throws ServletException, IOException {
  54. response.setContentType("text/html");
  55. PrintWriter out = response.getWriter();
  56. out
  57. .println("<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">");
  58. out.println("<HTML>");
  59. out.println("  <HEAD><TITLE>A Servlet</TITLE></HEAD>");
  60. out.println("  <BODY>");
  61. out.print("    This is ");
  62. out.print(this.getClass());
  63. out.println(", using the POST method");
  64. out.println("  </BODY>");
  65. out.println("</HTML>");
  66. out.flush();
  67. out.close();
  68. }
  69. }