Java web之五-网站访问统计

第一:利用application对象(or ServletContext Object)进行统计,得到的效果是每进入一次该网页就统计一次
因为一般统计网页访问量,刷新是不算进统计里的,这里就是这种缺点。

第二:利用application对象session对象来统计,
这种方法的原理是从打开浏览器到关闭浏览器算是访问一次,
刷新、返回等操作不算做一次访问。
但还是有缺陷,当jsp服务器从新启动时,数据也被清零了。

第三: 将统计数据存储在本地的文件当中,比如存储在一个txt文件当中。这是为了解决重启服务器之后数据不用担心会丢失。

第四: 由session对象+application对象+txt文本来实现网站的访问统计。


第一步,写个Servlet:

public class Counter extends HttpServlet{ 
 //写入文件的方法 
 public static void write2File(String filename, long count){ 
  try{ 
   PrintWriter out = new PrintWriter(new FileWriter(filename)); 
   out.println(count); 
   out.close(); 
  } catch (IOException e) { 
   // TODO: handle exception 
   e.printStackTrace(); 
  } 
 } 

 //读文件的方法 
 public static long readFromFile(String filename){ 
  File file = new File(filename); 
  long count = 0; 
  if(!file.exists()){ 
   try { 
    file.createNewFile(); 
   } catch (IOException e) { 
    // TODO Auto-generated catch block 
    e.printStackTrace(); 
   } 
   write2File(filename, 0); 
  } 
  try{ 
   BufferedReader in = new BufferedReader(new FileReader(file)); 
   try{ 
    count = Long.parseLong(in.readLine()); 
   } 
   catch (NumberFormatException e) { 
    // TODO: handle exception 
    e.printStackTrace(); 
   } catch (IOException e) { 
    // TODO Auto-generated catch block 
    e.printStackTrace(); 
   } 
  } catch (FileNotFoundException e) { 
   // TODO: handle exception 
   e.printStackTrace(); 
  } 
  return count; 
 } 
} 

第二,在WebRoot目录下建jsp文件

```
<%@page import="org.servlet.count.Counter"%> 
<%@ page language="java" import="java.util.*" pageEncoding="GB2312"%> 

<html> 
 <head> 
  <title>java 计数器程序title> 
 head> 
 <body> 
 <% 

 Counter CountFileHandler = new Counter(); 

 long count = 0; 

 if(application.getAttribute("count") == null){ 

  count = CountFileHandler.readFromFile(request.getRealPath("/") + "count.txt"); 

  application.setAttribute("count", new Long(count)); 
 }  

 count = (Long)application.getAttribute("count"); 

 if(session.isNew()){ 

  count++; 
  application.setAttribute("count", count); 

  //更新文件目录 
  CountFileHandler.write2File(request.getRealPath("/") + "count.txt",count); 

  } 
 %> 

 访问人数:<%=count %> 
  body> 
html> 

你可能感兴趣的:(Java web之五-网站访问统计)