//首先传递表单的方式肯定是get方式,也就是传递的参数都会在URL上显示出来
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");//返回的内容格式是html格式
PrintWriter out = response.getWriter();//创建输出流对象
//之后的代码其实都其实就是向HTML输出内容嘛,自然地可以发现引号里的内容都是HTML的标准格式。
out
.println("");
out.println("");
out.println("