//获取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配置文件参数值
原文:https://www.cnblogs.com/lijianda/p/10608132.html