javaEE问题求解。
假设有一个servlet,还有一个名字为aa.jsp的jsp页面,请分别写出从这个Servlet跳转到des.jsp页面的重定向和请求分派的核心代码。...
假设有一个servlet,还有一个名字为aa.jsp的jsp页面,请分别写出从这个Servlet跳转到des.jsp页面的重定向和请求分派的核心代码。
展开
1个回答
展开全部
例:在servlet中进行重定向
public void doPost(HttpServletRequest request,HttpServletResponse response)
throws ServletException,IOException
{
response.setContentType("text/html; charset=gb2312");
ServletContext sc = getServletContext();
RequestDispatcher rd = null;
rd = sc.getRequestDispatcher("/index.jsp"); //定向的页面
rd.forward(request, response);
}
通常在servlet中使用,不在jsp中使用。
public void doPost(HttpServletRequest request,HttpServletResponse response)
throws ServletException,IOException
{
response.setContentType("text/html; charset=gb2312");
ServletContext sc = getServletContext();
RequestDispatcher rd = null;
rd = sc.getRequestDispatcher("/index.jsp"); //定向的页面
rd.forward(request, response);
}
通常在servlet中使用,不在jsp中使用。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询