📄 textfilter.java
字号:
/**
* Title : Base Dict Class
* Description : here Description is the function of class, here maybe multirows
* @author <a href="mailto:sunpeng@china.freeborders">kevin</a>
* @Version 1.0
*/
package log4j;
import java.io.IOException;
import java.util.logging.FileHandler;
import java.util.logging.Filter;
import java.util.logging.LogManager;
import java.util.logging.LogRecord;
/**
* Class description goes here.
* @version 1.0 2005-10-13
* @author kevin
*/
public class TextFilter implements Filter
{
private String text = "";
public TextFilter()
{
String className = TextFilter.class.getName();
System.out.println("====>>"+className);
this.text = LogManager.getLogManager().getProperty(className + ".text");
}
/**
* @see java.util.logging.Filter#isLoggable(java.util.logging.LogRecord)
*/
public boolean isLoggable(LogRecord record)
{
System.out.println("====>>"+record.getMessage());
if(record.getMessage().indexOf(this.text) != -1)
{
return true;
}
else
{
return false;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -