Log4j2介绍和特性实例(七)--代码中指定日志文件的名字

有的时候,可能会希望通过程序代码,动态指定日志文件的名字。

在下面的例子中,我使用JS脚本文件的名字来命名日志文件

	/**
	 * 日志名字根据JS文件名,动态指定
	 * 
	 * @param JSName 是JS脚本的名字
	 * @param configPath log4j2.xml的路径
	 * 
	 */
	public void setLogName(String JSName, String configPath){
		String userPath = System.getProperty("user.dir");
//		System.out.println(userPath);
		System.setProperty("logFileName", userPath + "\\" + JSName + ".log");//logFileName在log4j2.xml中使用
		System.out.println(System.getProperty("logFileName").toString());
		
		LoggerContext ctx = (LoggerContext)LogManager.getContext(false);
		
		File filePath = new File(configPath);
		URI configURI = filePath.toURI();
		System.out.println("configURI = " + configURI.toString());//configURI = file:/E:/workspace4J2EE/KMSTool/log4j2.xml
		ctx.setConfigLocation(configURI);

//		ctx.reconfigure();//如果log4j2.xml在默认路径(src目录)下的情况,就不用获取xml文件的路径了
	}
上面的代码是针对配置文件log4j2.xml不在配置文件默认路径src目录下情况;如果配置文件在src目录下的话,只需要简单的设置一下ctx.reconfigure()就可以完成日志文件名的动态指定。


在log4j2.xml配置文件中,文件名fileName= "${sys:logFileName}"

 
 

	.



	
        
		
		
		
		
		
	
		
 


	
		
	  

 
下一篇将介绍log4j2暂时不支持的内容。


你可能感兴趣的:(Java,Java,Log工具,Java,Log4j2)