Java / JSP中的Response.End()
在.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小服务程序处理程序(这我假设是你的意图),最终从函数返回,但不是。
以上是 Java / JSP中的Response.End() 的全部内容, 来源链接: utcz.com/qa/409731.html