从jar包中读取资源文件

http://www.iteye.com/topic/483115,这篇文章介绍的很详细。

补充一下下关于log4j配置文件的读取方式。

  InputStream is =  GameServer.class.getResourceAsStream("/log4j.properties");    
  Properties  p  = new Properties();
  p.load(is);
  PropertyConfigurator.configure(p);

log4j.properties 是放在src的根目录下的。

posted @ 2012-10-29 18:37  彼岸Elan  阅读(387)  评论(0编辑  收藏  举报