如何读取jar包外的properties文件和log4j.properties

 我来答
匿名用户
推荐于2016-03-01
展开全部
下面是我的解决方案,已证实有效,其中Log4jP = "log4j.properties"

private void initLog4jProperties()
{
//未打包时读取配置
String file = this.getClass().getClassLoader()
.getResource(Log4jP).getFile();
if(new java.io.File(file).exists())
{
PropertyConfigurator.configure(file);
System.out.println("未打包时读取配置");
return;
}

//读取jar包外配置文件
file = System.getProperty("user.dir") +"/conf/"+Log4jP;
if(new java.io.File(file).exists())
{
PropertyConfigurator.configure(file);
System.out.println("读取jar包外配置文件");
return;
}
//读取jar包内配置文件
InputStream in = this.getClass().getClassLoader()
.getResourceAsStream(Log4jP);
Properties p=new Properties();
try {
p.load(in);
PropertyConfigurator.configure(p);
System.out.println("读取jar包内配置文件");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式