private static final String CONFIG_PROPERTIES = "ipConfig.properties"; // properties 文件路径
==================================================================================================================
第一种方式
InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream(CONFIG_PROPERTIES);
Properties p = new Properties();
try {
p.load(inputStream);
} catch (IOException e1) {
e1.printStackTrace();
}
p.getProperty(key);
==================================================================================================================
第二种方式
InputStream inStream = Constant.class.getResourceAsStream(CONFIG_PROPERTIES);
Properties prop = new Properties();
try {
prop.load(inStream);
} catch (IOException e) {
e.printStackTrace();
}
prop.getProperty(key);
==================================================================================================================
第三种方式
Properties prop = new Properties();
try {
FileInputStream inStream = new FileInputStream(CONFIG_PROPERTIES);
prop.load(inStream);
} catch (IOException e) {
e.printStackTrace();
}
prop.getProperty(key);
==================================================================================================================
第四种方式
ResourceBundle resourceBundle = ResourceBundle.getBundle("jdbc");
resourceBundle.getString(key);
@@