1. 程式人生 > >ResourceBundle類的方式來讀取config.properties配置文件參數值

ResourceBundle類的方式來讀取config.properties配置文件參數值

static class 配置文件 bsp sys nbsp fig res utf

//獲取config.properties配置文件參數值
public static ResourceBundle resource = ResourceBundle.getBundle("config");
String system_Name = new String(resource.getString("Client_Name").getBytes("ISO-8859-1"),"UTF-8");

ResourceBundle類的方式來讀取config.properties配置文件參數值