读取jar包内配置⽂件public class Config {
private static Properties properties;
private static Logger logger = Logger(Config.class);
static {
小罗伯特 唐尼
广州二本大学try {
+ "/config/log4j.properties");
明星穿衣搭配
properties = new Properties();
// 读取SRC下配置⽂件 --- 属于读取内部⽂件
// properties.load(ResourceAsStream("/init.properties"));
// 读取系统外配置⽂件 (即Jar包外⽂件) --- 外部⼯程引⽤该Jar包时需要在⼯程下创建config⽬录存放配置⽂件    String filePath = Property("user.dir")
+ "/config/init.properties";
InputStream in = new BufferedInputStream(new FileInputStream(filePath));
properties.load(in);
} catch (IOException e) {
<("读取配置信息出错!", e);
}
}
public static String getObject(String prepKey) {
Property(prepKey);
}读取配置文件失败
public static void main(String[] agrs) {
logger.Object("testsql"));
}何云伟婚姻
全球最性感
}