讀取配置檔案並讀取檔案

2021-07-23 13:19:13 字數 944 閱讀 7643

配置檔案

url=/users/z_ten/documents

name=myfile.txt

url是讀寫檔案的檔案位址,name是讀寫檔案的檔名稱

**:fileinputstream is=null;

try catch (filenotfoundexception e2)

properties pt=new properties();

try catch (ioexception e1)

在程式中讀寫配置檔案使用輸入流將配置檔案資訊讀到程式中,再定義乙個properties型別的pt去裝填該物件。load方法,不是=。之後關閉輸入流。

寫檔案:

file file=new file(pt.getproperty("url"),pt.getproperty("name"));//要寫入檔案的檔案位置和名稱,此處是讀取配置檔案中的內容得到的。

try catch (ioexception e)

string

str=" hello word1";//要寫入檔案的內容

byte

bt = new

byte[1204];

bt=str.getbytes();

try catch (ioexception e)

try catch (ioexception e)

} catch (filenotfoundexception e)

讀檔案:

file file=new file(pt.getproperty("url"),pt.getproperty("name"));//要讀取的檔案的位址和名稱(同上寫檔案)

try

in.close();

} catch (ioexception e)

} catch (filenotfoundexception e)

讀取配置檔案

類載入器 1 直接用class.forname 類的路徑名 class.forname com.hsf.classloader.classloader 2 用classloder 類載入器 inputstream in classloader.getsystemresourceasstream aa...

C 讀取配置檔案

1 首先引入標頭檔案 include 2 獲取應用程式的當前路徑 char buf 1000 getcurrentdirectory 1000,buf 得到當前工作路徑3 獲取配置檔案的路徑 char path 1024 definesysconfig config.ini sprintf path...

MFC讀取配置檔案

在我們寫的程式當中,總有一些配置資訊需要儲存下來,以便完成程式的功能,最簡單的辦法就是將這些資訊寫入ini檔案中,程式初始化時再讀入.具體應用如下 一.將資訊寫入.ini檔案中.1.所用的winapi函式原型為 bool writeprivateprofilestring lpctstr lpkey...