【首語】
非常感謝你能夠對季風流量統計系統感興趣。不管你是JAVA的初學者、還是JAVA的高手,對我敢肯定的對你說,中國JAVA技術的方發展,甚至我們中國軟件業的發展,就是靠我們這些對軟件開發感興趣的人。
【說明】
本系統源代碼是完全公開,絕無保留,無需注冊,完全免費。各位大蝦們也可對源代碼時行自由修改和優化,盡量能夠推出更好的版本,為廣大網友免費下載。本系統使用瀟湘多用戶統計系統(asp版)的圖片,我在此感謝網上給論壇免費提供圖標,源碼的技術人員,謝謝你們。
【功能】
1:多用戶統計系統,防止刷新,速度快,適用廣泛
2:綜合統計,最近訪問,地區分析,地址分析,屏幕大小,來訪頁面,訪問次數,操作系統,當前在線,IP地址,瀏覽器,年報表,月報表,周報表,歷史報表,日報表等
3:可以精確的跟蹤統計每一位來訪者的IP與在線時間-同一IP在線每隔5分鐘才能增加一個計數(你也可以修改時間,在stat.jsp頁你把ExTime改為你想要的時間,即 int ExTime=5 )。
4:提供詳細IP數據包,讓你清楚的知道來訪者是來是何方。
標簽:
JAVA
流量統計
初學者
上傳時間:
2013-11-30
上傳用戶:zl5712176
Although there has been a lot of AVL tree libraries available now, nearly all of them are meant to work in the random access memory(RAM). Some of them do provide some mechanism for dumping the whole tree into a file and loading it back to the memory in order to make data in that tree persistent. It serves well when there s just small amount of data. When the tree is somewhat bigger, the dumping/loading process could take a lengthy time and makes your mission-critical program less efficient. How about an AVL tree that can directly use the disk for data storage ? If there s something like that, we won t need to read through the whole tree in order to pick up just a little bit imformation(a node), but read only the sectors that are neccssary for locating a certain node and the sectors in which that node lies. This is my initial motivation for writing a storage-media independent AVL Tree. However, as you step forth, you would find that it not only works fine with disks but also fine with memorys, too.
標簽:
available
libraries
Although
nearly
上傳時間:
2014-01-22
上傳用戶:zhoujunzhen