Web工程下讀取檔案的幾種方法

2021-08-13 20:09:47 字數 1155 閱讀 8366

1、讀取檔案系統路徑檔案 * 一定要使用絕對路徑

string filename = getservletcontext().getrealpath("/index.jsp"); // 讀取webroot下

string filename2 = getservletcontext().getrealpath(

"/web-inf/a.properties");// 讀取webroot/web-inf/a.properties

2、讀取classpath下檔案

string filename3 = readfile.class

.getresource("/info.txt").getfile();// 讀取src下info.txt

string filename4 = readfile.class

.getresource(

"/cn/itcast/config/info.txt").getfile();// 讀取 src下

// cn.itcast

.config包下info.txt

3、使用resourcebundle 快速讀取src下properties檔案

string value = resourcebundle.getbundle("myproperties").getstring(

"name");// 讀取src下 基名為myproperties的properties檔案,獲取其中name配置值

4、使用properties類載入properties檔案

// 讀取src下b.properties

inputstream in = readfile.class

.getresourceasstream("/b.properties");

properties properties = new properties();

properties.load(in);

string value2 = properties.getproperty("name"); // 獲得name屬性

Web工程下讀取檔案的幾種方法

1 讀取檔案系統路徑檔案 一定要使用絕對路徑 string filename getservletcontext getrealpath index.jsp 讀取webroot下 string filename2 getservletcontext getrealpath web inf a.pro...

php 讀取檔案的幾種方法

檔案操作的三個步驟,開啟,操作,關閉。fopen fopen 路徑,方式 fwrite fopen,寫入的字串 fclose fopen 其中開啟方式有如下幾種方式 模式描述 r唯讀。在檔案的開頭開始。r 讀 寫。在檔案的開頭開始。w只寫。開啟並清空檔案的內容 如果檔案不存在,則建立新檔案。w 讀 ...

QT 讀取txt檔案的幾種方法

廢話不說直接上 stream.seek file.size 將當前讀取檔案指標移動到檔案末尾 intcount 0 while count 10 stream.seek 0 將當前讀取檔案指標移動到檔案開始 while stream.atend ui textedit clear ui texted...