?? simpleservlet.java
字號(hào):
//5.2.2
public class SimpleServlet extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException
{
// 首先設(shè)置頭部
res.setContentType("text/html");
// 用 writer方法返回響應(yīng)數(shù)據(jù)
PrintWriter out = res。getWriter();
out.println("");
out.println("SimpleServlet Output");
out.println("This is output is from SimpleServlet。");
out.println("");
out.close();
}
public String getServletInfo() {
return "A simple Servlet";
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -