启动IE窗口运行如下JSP,如果连续刷新5次,输出的结果是X,紧接着重新启动一个新的IE窗口运行该JSP,连续刷新3次,输出的结果是Y,X和Y的值分别是( )。 Integer cnt=(Integer)application.getAttribute(”hitcount ”) ; if(cnt= =null){ cnt=new Integer(1); }else{ cnt=new Integer(cnt.intValue()+1); } application.setAttribute(“hitcount”,cnt); %>