jsp+java類+servlet實現檔案讀取、寫入的功能(一)
來源:互聯網
上載者:User
本文是根據tomcat平台下實現而做,檔案目錄為:
tom_homewebappsews下:
└html
└WEB-INF
└classes
└com
└FileMan.class
└FileServlet.class
└web.xml
首頁我們先實現檔案讀取的類:FileMan.java
//FileMan.java 讀寫檔案的一個類
package com;
import java.io.*;
public class FileMan{
private String currentRecord = null;//儲存文本的變數
private BufferedReader file; //BufferedReader對象,用於讀取檔案資料
private String path;//檔案完整路徑名
public FileMan() {
}
//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;
}
//寫入檔案
public void WriteFile(String filePath,String tempcon) throws FileNotFoundException
{
path = filePath;
try {
//建立PrintWriter對象,用於寫入資料到檔案中
PrintWriter pw = new PrintWriter(new FileOutputStream(filePath));
//用文字格式設定列印整數Writestr
pw.println(tempcon);
//清除PrintWriter對象
pw.close();
} catch(IOException e) {
//錯誤處理
System.out.println("寫入檔案錯誤"+e.getMessage());
}
}
/*下面這一般你可以用來測試java應用程式來讀取檔案,將前面的"//"去掉後你可以運行:java FileMan 來測試。*/
//public static void main(String args[])
//{
//FileMan fm=new FileMan();
//try
//{
//fm.WriteFile("test.txt","asf");
//}
//catch(FileNotFoundException e){}
//}
}