1.classLoader得到配置文件的数据
package com.spring.jdbc.jdbcTemplate; import java.io.IOException; import java.io.InputStream; import java.util.Properties; /** * @author 作者 : 程呈 * @version 创建时间:2017年7月8日 下午6:45:46 类说明 */ public class TestGetProValue { public static void main(String[] args) throws IOException { InputStream io = TestGetProValue.class.getClassLoader().getResourceAsStream("jdbc.properties"); Properties ps = new Properties(); ps.load(io); String vaule=(String) ps.get("jdbc.password"); System.out.println(vaule); } }
2.ResourceBundle 获取配置文件数据
public static void main(String[] args) throws IOException { getProMethodTwo("jdbc", "jdbc.password"); } private static String getProMethodTwo(String proName,String key) throws IOException { ResourceBundle rb = ResourceBundle.getBundle(proName); String value=rb.getString(key); System.out.println(value); return value; }
时间: 2024-10-14 00:13:56