小程序之统计网页访问人数

小程序之统计网页访问人数publicclassAServletextendsHttpServlet{ publicvoiddoGet(HttpServletRequestrequest,HttpServletResponseresponse) throwsServletException,IOException{ //1获得Application域中存放的统计数字 Int

小程序之统计网页访问人数"

public class AServlet extends HttpServlet {

	public void doGet(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
			//1 获得Application域中存放的统计数字
			Integer count = (Integer) getServletContext().getAttribute("count");
			//2 判断是否获得到统计数字
			if(count == null){
				//没获得到=> 将数字初始化为1
				count = 1;
			}else{
				//获得到了=> 将数字加1
				count += 1;
			}
			//3 输出,放回到Application域中
			response.getWriter().write("you are the "+ count+" vistors");
			getServletContext().setAttribute("count",count);
	}

}

今天的文章小程序之统计网页访问人数分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/31437.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注