讀取配置檔案的方法

2021-07-09 07:47:57 字數 710 閱讀 7593

public static listhosts = new arraylist();

static properties pros= new properties();

staticelse

} catch (ioexception e)

}

總結:

首先把名為main_config.properties的配置檔案放在src下即可,配置檔案裡的資料樣式為name=value。

例如:isabsolute=true

sms_port=8090

在專案當前類中引入properties類,properties pros = new properties();

pros.load(當前類.class.getresourseasstream("/main_config.properties"));

當然有時候我們需要在專案上線之前先使用測試環境的配置檔案。這時可以巧妙地在配置檔案中定義乙個變數(變數名字隨便起)如 isdebug ,讓其值為true或者false,當值為true時,可以載入測試的配置資料,為false時載入正式的資料。其作用相當於乙個開關。

緊接著就可以隨心所欲的獲取配置檔案裡的資料值了。如: string sms_port = pros.getproperty("sms_port");

然後就沒有然後了,大功告成!

shell 讀取配置檔案的方法

乙個bbs的問答。配置檔案config內容如下 id 123 ip 192.168.3.154 name test方法一,利用sed解析文字,提取配置資訊 id sed id d s urfile ip sed ip d s urfile name sed name d s urfile echo ...

scala讀取配置檔案的方法

com.typesafe groupid config artifactid 1.3.3 version dependency 配置檔案內容 getstring裡寫的字串就是配置檔案裡的key val conf configfactory.load var dmplog conf.getstring...

讀取配置檔案

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