response.sendRedirect("./../luru/nsrxx.jsp");

解决方案 »

  1.   

    RequestDispatcher dispatcher =
              getServletContext().getRequestDispatcher("your.jsp");
          dispatcher.forward(request, response);
    通过request传递数据
      

  2.   

    自己顶一下!还有吗?
    我用楼上的方法跳不到.jsp页面中去???
      

  3.   

    response.sendRedirect("./../luru/nsrxx.jsp");RequestDispatcher dispatcher =
              getServletContext().getRequestDispatcher("your.jsp");
          dispatcher.forward(request, response);
    通过request传递数据都可以的!