JSP counter creation _ MySQL

Source: Internet
Author: User
Counters are essential to websites. Don't underestimate them. every time the webmaster looks at the rapid growth of numbers on a small counter, it feels really good. In the past, we used cgi and asp to write counters. There are many articles in this regard. here, we will use the popular jsp technology to demonstrate how to make a counter. Here we use two files: test. js? 1.1.26 counters

  
Counters are essential to websites. Don't underestimate them. every time the webmaster looks at the rapid growth of numbers on a small counter, it feels really good. In the past, we used cgi and asp to write counters. There are many articles in this regard. here, we will use the popular jsp technology to demonstrate how to make a counter.
Two files are used. the test. jsp file is used to run in the browser. counter. java is a small java bean program in the background to read the counter value and write the counter value. For the storage of the counter, we have stored a file named lyfcount.txt. The following is the detailed program code (put test. jsp to the web directory, and put counter. java to the class directory ):
// Test. jsp file
<% @ Page contentType = "text/html; charset = gb2312" %>



Counter demo





<%
// Call readfileenders of the counterobject to read the count in lyfcount.txt.
String cont = counter. ReadFile ("/lyfcount.txt ");
// Call the readfilecounter of the counterobject to add the counter to the lyfcount.txt file.
Counter. WriteFile ("/lyfcount.txt", cont); %>
You are the <% = cont %> visitor


// Counter. java: a bean for reading and writing files
Import java. io .*;
Public class counter extends Object {
Private String currentRecord = null; // variable for saving text
Private BufferedReader file; // BufferedReader object, used to read file data
Private String path; // Complete file path name
Public counter (){
}
// The ReadFile method is used to read the data in the file filePath and return the data.
Public String ReadFile (String filePath) throws FileNotFoundException
{
Path = filePath;
// Create a new BufferedReader object
File = new BufferedReader (new FileReader (path ));
String returnStr = null;
Try
{
// Read a row of data and save it to the currentRecord variable
CurrentRecord = file. readLine ();
}
Catch (IOException e)
{// Handle errors
System. out. println ("data reading error .");
}
If (currentRecord = null)
// If the file is empty
ReturnStr = "no record ";
Else
{// The file is not empty.
ReturnStr = currentRecord;
}
// Return the data to read the file
Return returnStr;
}
// The ReadFile method is used to write the counter + 1 data to the filePath of the text file.
// To increase the count
Public void WriteFile (String filePath, String counter) throws



FileNotFoundException
{
Path = filePath;
// Convert counter to int type and add one
Int Writestr = Integer. parseInt (counter) + 1;
Try {
// Create a PrintWriter object for writing data to a file
PrintWriter pw = new PrintWriter (new FileOutputStream (filePath ));
// Print the integer Writestr in text format
Pw. println (Writestr );
// Clear the PrintWriter object
Pw. close ();
} Catch (IOException e ){
// Handle errors
System. out. println ("file writing error" + e. getMessage ());
}
}
}
In the inventory file, the file content is a number 0. you can directly enter the address in the browser to see the counter, and refresh the browser to see the changing numbers. (If the file cannot be found at runtime, note readfilena in test.jspand run the scripts. then, the lyfcount.txt file is automatically created and runs properly .)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.