고객이 웹사이트를 방문하면 이 파일을 읽고, 서버가 재시작되기 전의 카운트를 읽고, 1을 증가시킨 후, 새로운 카운트를 파일에 씁니다.
참조 코드는 다음과 같습니다.
100db36a723c770d327fc0aef2ce13b1
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Insert title here</title> </head> <body> <%! int number = 0; File file = new File("count.txt"); synchronized void countPeople() { if(!file.exists()) { number++; try{ file.createNewFile(); FileOutputStream out = new FileOutputStream("count.txt"); DataOutputStream dataOut = new DataOutputStream(out); dataOut.writeInt(number); dataOut.close(); }catch(IOException ex){} } else try{ FileInputStream in = new FileInputStream("count.txt"); DataInputStream dataIn = new DataInputStream(in); number = dataIn.readInt(); number++; in.close(); dataIn.close(); FileOutputStream out = new FileOutputStream("count.txt"); DataOutputStream dataOut = new DataOutputStream(out); dataOut.writeInt(number); out.close(); dataOut.close(); }catch(IOException ex){} } %> <% countPeople(); %> <p> 您是第 <%=number %> 个访问网站的客户。 </p> </body> </html>
위 내용은 모두의 학습에 도움이 되기를 바랍니다. 또한 모두가 PHP 중국어를 배워보시길 바랍니다.网
자바 웹 사이트 방문 통계에 관한 더 많은 기사를 보려면 PHP 중국어 사이트를 주목해주세요!