jsp计数器代码

js|计数器

<!--
JSP-Hitcounter counts sessions.
Copyright (C) 2000 Jesper Schmitz Mouridsen.
Visit www.webappcabaret/jsm2/webapps.jsp?find=jsphcs for more info.

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License at http://www.opensource.org/licenses/gpl-license.html for more details
-->

<%

BufferedReader inf = new BufferedReader(new FileReader("/path/to/counter.txt"));
int tmp = Integer.parseInt(inf.readLine());
int i=0;

try {

i = Integer.parseInt(request.getSession().getValue("tal").toString());
} catch (NullPointerException t) {i=0; }

if (i==0) {
tmp++;

PrintWriter outf = new PrintWriter(new BufferedWriter(new FileWriter("/path/to/counter.txt")));
outf.println(tmp);
outf.close();
inf.close();
request.getSession().putValue("tal", "1");
}

BufferedReader inf2 = new BufferedReader(new FileReader("/path/to/counter.txt"));
%>
<%
String zeroes="";
String hits = inf2.readLine();
inf2.close();
for (int t=0; t < 8-hits.length(); t++) {
zeroes=zeroes+"0"; }
out.println(zeroes + hits);
%>

时间: 2024-11-08 18:38:02

jsp计数器代码的相关文章

jsp计数器代码_JSP编程

<!-- JSP-Hitcounter counts sessions.Copyright (C) 2000 Jesper Schmitz Mouridsen. Visit www.webappcabaret/jsm2/webapps.jsp?find=jsphcs for more info. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Ge

一个可以防止刷新的JSP计数器

js|计数器|刷新 <%@ page contentType="text/html;charset=gb2312" %> <!--jsp计数器--> <%-- 以前学ASP时,用ASP做防止刷新的计数器很简单,以下是一个用JSP做的计数器--%> <html> <head> <title>jsp计数器</title> </head> <body> <%@ page impo

如何在网站添加计数器代码

中介交易 http://www.aliyun.com/zixun/aggregation/6858.html">SEO诊断 淘宝客 云主机 技术大厅 在网站添加计数器代码 放置计数器代码到网页当中,才能统计网站的访问情况.在这里需要注意一点的是:每个页面都需要放置这个代码,才能统计到每个页面.那么如何放置这个代码每个页面呢?在我们的网站系统后台将会很容易做到. 步骤如下: 1.登录系统,在前面有介绍过如何登录系统后台,这里就不重复了. 2.点击导航菜单中的"标签". 3

javascript-Web前端JS计数器代码修改问题

问题描述 Web前端JS计数器代码修改问题 这是一个js计时器的代码,目前只能向上滚动数字,我想改成向下滚动的应该怎么办呢,跪谢各位大神~ function DigitRoll(a){if(this.container=document.querySelector(a.container),this.width=a.width||2,!this.container)throw Error("no container");this.container.style.overflow=&qu

jsp 分页程序代码

jsp 分页程序代码 <%  String s;  String theurl;  theurl="products.jsp?";  s=request.getParameter("s");  if(s!=null){   s=new String(request.getParameter("s").getBytes("iso-8859-1"));   theurl="products.jsp?s="

一个可以防止刷新的JSP计数器_JSP编程

<%@ page contentType="text/html;charset=gb2312" %> <!--jsp计数器--> <%-- 以前学ASP时,用ASP做防止刷新的计数器很简单,以下是一个用JSP做的计数器--%> <html> <head> <title>jsp计数器</title> </head> <body> <%@ page import="j

jsp数据更新代码

jsp数据更新代码 <script language="javascript"> function form1_onsubmit() {  if (document.form1.SiteName.value=="")     {       window.alert("请输入站点名称");       return false;      } } // 修改编辑栏高度 function Textarea_Size(num,objnam

php写的网页计数器代码

<html> <head> <title>php教程写的网页计数器代码</title> <head> <body> <?php $countfile = "counter.txt"; //定义计数器写入的文件是当前目录下的counter.txt文件中,然后我们应当测试该文件能否打开 if (($fp = fopen($countfile, "r+")) == false) {  //用读写

php简单自主开网页访问次数计数器代码

这里是我们用php教程简单自主开网页访问次数计数器代码偌,是一款基于文件的图形计数器范例代码,会用到的文件用 num.txt //累计访问次数 vist.php//测试文件 count.php//统计访问次的核心程序,因为它会把文字转换成gif图片,并且输出到浏览器. <HTML> <HEAD> <TITLE>图形计数器范例</TITLE> </HEAD> <BODY> 您好,您是第<img src="ImgOutFi