标签:

super.doGet(req, resp);需注释掉(这是调用了父类的方法)PrintWriter时,需用resp.setContentType("text/html;charset=utf-8");//设置显示方式及编码| JSP对象 | Servlet中怎样获得 |
|---|---|
| out | resp.getWriter |
| request | req参数 |
| response | resp参数 |
| session | req.getSession()函数 |
| application | getServletContext()函数 |
| exception | Throwable |
| page | this |
| pageContext | pageContext |
| Config | getServletConfig()函数 |
String[] favorites;
favorites = request.getParameterValues("favorite");
标签:
原文地址:http://www.cnblogs.com/Val1ant/p/5338900.html