程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> jsp+java類+servlet實現文件讀取、寫入的功能(一)

jsp+java類+servlet實現文件讀取、寫入的功能(一)

編輯:關於JSP

本文是根據tomcat平台下實現而做,文件目錄為:
 tom_homewebapps ews下:
└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){}
//}
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved