?? helloword.java
字號:
/* * helloword.java * * Created on 2005年1月24日, 下午7:26 */import java.io.*;import javax.servlet.*;import javax.servlet.http.*;public class helloword extends HttpServlet{ static final private String CONTENT_TYPE="text/html;charset=GBK"; public void init()throws ServletException{ System.out.println("Servlet的生命開始"); } public void doGet(HttpServletRequest request,HttpServletResponse response)throws ServletException,IOException{ response.setContentType(CONTENT_TYPE); PrintWriter out=response.getWriter(); out.println("<html>"); out.println("<head><title>Servlet 生命周期示例</title></head>"); request.setCharacterEncoding("GBK"); out.println("<body>"); out.println("<h3>本例演示Servlet的生命周期</h3>"); out.println("</body>"); out.println("</html>"); out.close(); } public void destroy(){ System.out.println("Servlet的生命周期結束"); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -