JSP application.removeAttribute()方法:移除指定属性 该方法用于移除 application 对象中的一个属性。 语法: removeAttribute(String name) 参数说明: name:要移除的属性的名称。 示例 将保存在 application 对象中的信息移除,关键代码如下: <% application.setAttribute("user","lzw"); application.removeAttribute("user"); %>