類載入器
1、直接用class.forname(類的路徑名)
class.forname("com.hsf.classloader.classloader");
2、用classloder (類載入器)
inputstream in = classloader.getsystemresourceasstream("aa.txt");
byte bs= new
byte[1024];
try catch (ioexception e) ``
`
小知識點:
1、把位元組轉換成string
system.out.println(new
string(bs,0,len));
2、將string轉換成位元組陣列
string
string="aaaa";
byte bytes = string.getbytes();
配置檔案的讀寫
資料庫的賬號和密碼可能會發生變更,所以這些都不應該寫在程式中,而應該寫在配置檔案中,讀取配置檔案,這樣修改起來也比較方便。
以下是讀取配置檔案的**:
static
catch (exception e)
}
注意:配置檔案裡面字串一定不要用「」,在寫的過程中由於password為空,在配置檔案裡面寫成了password =「」,所以就報了資料庫連線錯誤。還有就是 inputstream in =jdbcutil.class.getclassloader().getresourceasstream(「jdbc.properties」); 這裡一定不能寫成getsystemresourceasstream。 讀取配置檔案並讀取檔案
配置檔案 url users z ten documents name myfile.txt url是讀寫檔案的檔案位址,name是讀寫檔案的檔名稱 fileinputstream is null try catch filenotfoundexception e2 properties pt ne...
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...