在 IE 窗口访问 JSP 页面,其代码如下。然后连续刷新页面,输出的结果是 X ,紧接着重新启动一个新的 IE 窗口运行该 JSP 代码,连续刷新两次,输出的结果是 Y ,可能的 X 和 Y 的值分别是( )。 <%@ page contentType=”text/html; charset=GBK” %> <% Integer cnt = (Integer)application.getAttribute(“hitCount”); if ( cnt == null){ cnt = new Integer(1); }else{ cnt = new Integer(cnt.intValue() +1 ); } application.setAttribute(“hitCount”,cnt); %> <%=cnt%>