JavaScript   发布时间:2022-04-16  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了JS+JSP通过img标签调用实现静态页面访问次数统计的方法大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了JS+JSP通过img标签调用实现静态页面访问次数统计的方法。分享给大家供大家参,具体如下:

测试页面: test.html

test http-equiv="pragma" content="no-cache"> http-equiv="cache-control" content="no-cache"> http-equiv="expires" content="0"> http-equiv="keywords" content="keyword1,keyword2,keyword3"> http-equiv="description" content="This is my page"> this is a test page.

统计程序: pv.jsp:

假设部署位置为http://127.0.0.1:8080/EasyCMS/pv.jsp

<%@page import="java.io.*"%> <% String path="/opt/test.txt"; writeNumber(String.valueOf(readNumber(path)+1),path); %> <%=readNumber(path) %> <%! /** * 写入数字内容 * * @param number * @param filename * @return */ public boolean writeNumber(String number,String filename) { try { FileOutputStream fos = new FileOutputStream(filename); OutputStreamWriter writer = new OutputStreamWriter(fos); writer.write(number); writer.close(); fos.close(); } catch (IOException e) { e.printStackTrace(); return false; } return true; } /** * 读取数字内容 * * @param filename * @return */ public int readNumber(String filename) { int number = 0; try { File file = new File(filename); if (file.exists()) { FileReader fr = new FileReader(file); BufferedReader br = new BufferedReader(fr); String contents = br.readLine(); if (contents != null && contents.length() > 0) { contents = contents.replaceAll("[^0-9]",""); number = Integer.valueOf(contents); } br.close(); fr.close(); } } catch (IOException E) { e.printStackTrace(); } return number; } %>

基本思想:

访问静态页面时,通过img标签指定src 为访问统计的地址,img标签向统计程序发出请求,实现统计.
统计示例代码采用文件来记录访问次数,实际项目可以记录数据库.

关键代码:
<div class="codetitle"><a style="cursOR: pointer" data="40908" class="copybut" id="copybut40908" onclick="doCopy('code40908')"> 代码如下:

<div class="codebody" id="code40908"><script type="text/javascript">document.write("");

希望本文所述对大家JavaScript程序设计有所帮助。

大佬总结

以上是大佬教程为你收集整理的JS+JSP通过img标签调用实现静态页面访问次数统计的方法全部内容,希望文章能够帮你解决JS+JSP通过img标签调用实现静态页面访问次数统计的方法所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
猜你在找的JavaScript相关文章