在.net中,您可以在任何需要的上下文中使用Response.End()。Java / JSP中有类似的功能吗?
谢谢,
山姆
以我的经验,您必须执行以下操作:
out.flush(); // Send out whatever hasn't been sent out yet. out.close(); // Close the stream. Future calls will fail. return; // Return from the JSP servelet handler.
注意: 这 不是 一个函数里工作,因为你只从JSP小服务程序处理程序(这我假设是你的意图),最终从函数返回,但不是。