当前位置: 代码迷 >> Java Web开发 >> jsp 有没有像asp response.end的效能
  详细解决方案

jsp 有没有像asp response.end的效能

热度:43   发布时间:2016-04-17 13:07:08.0
jsp 有没有像asp response.end的功能
就是
if(true)
{
    ....
}
停止后面的代码的输出

------解决方案--------------------
推荐使用异常处理。
实在想用response.end类似的,
可以用 return;
------解决方案--------------------
System.out.close();
  相关解决方案