//counter.java 讀寫文件的一個bean
import java.io.*;
public class counter extends Object {
private String currentRecord = null;//保存文本的變量
private BufferedReader file; //BufferedReader對象,用於讀取文件數據
private String path;//文件完整路徑名
public counter() {
}
//ReadFile方法用來讀取文件filePath中的數據,並返回這個數據
public String ReadFile(String filePath) throws FileNotFoundException
{
path = filePath;
//創建新的BufferedReader對象
file = new BufferedReader(new FileReader(path));
String returnStr =null;
try
{
//讀取一行數據並保存到currentRecord變量中
currentRecord = file.readLine();
}
catch (IOException e)
{//錯誤處理
System.out.println("讀取數據錯誤.");
}
if (currentRecord == null)
//如果文件為空
returnStr = "沒有任何記錄";
else
{//文件不為空
returnStr =currentRecord;
}
//返回讀取文件的數據
return returnStr;
}
//ReadFile方法用來將數據counter+1後寫入到文本文件filePath中
//以實現計數增長的功能
public void WriteFile(String filePath,String counter) throws FileNotFoundException
{
path = filePath;
//將counter轉換為int類型並加一
int Writestr = Integer.parseInt(counter)+1;
try {
//創建PrintWriter對象,用於寫入數據到文件中
PrintWriter pw = new PrintWriter(new FileOutputStream(filePath));
//用文本格式打印整數Writestr
pw.println(Writestr);
//清除PrintWriter對象
pw.close();
} catch(IOException e) {
//錯誤處理
System.out.println("寫入文件錯誤"+e.getMessage());
}
}
}
到這裡,程序寫完了,將counter.java編譯為counter.class,同樣放在對應的class目錄下,在根目錄下建立一個lyfcount.txt文件,文件內容就一個數字0,直接在浏覽器中敲入地址就可以看到計數器了,刷新浏覽器會看到不斷變幻的數字。
(如果運行時候提示找不到文件,請將上面test.jsp中的readfile那一句注釋後運行一次則lyfcount.txt文件自動建立,然後就可以正常運行。)