TestLocalInterface.java~1~
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package meetings;
  2. import javax.servlet.*;
  3. import javax.servlet.http.*;
  4. import java.io.*;
  5. import java.util.*;
  6. /**
  7.  * <p>Title: </p>
  8.  * <p>Description: </p>
  9.  * <p>Copyright: Copyright (c) 2003</p>
  10.  * <p>Company: </p>
  11.  * @author not attributable
  12.  * @version 1.0
  13.  */
  14. public class TestLocalInterface extends HttpServlet {
  15.   private static final String CONTENT_TYPE = "text/html; charset=GB2312";
  16.   //Initialize global variables
  17.   public void init() throws ServletException {
  18.   }
  19.   //Process the HTTP Get request
  20.   public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  21.     response.setContentType(CONTENT_TYPE);
  22.     PrintWriter out = response.getWriter();
  23.     out.println("<html>");
  24.     out.println("<head><title>TestLocalInterface</title></head>");
  25.     out.println("<body bgcolor="#ffffff">");
  26.     out.println("<p>The servlet has received a GET. This is the reply.</p>");
  27.     out.println("</body></html>");
  28.   }
  29.   //Clean up resources
  30.   public void destroy() {
  31.   }
  32. }