热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

定时删除超过N天前的日志文件

流程:代码:packagecom.han.log4jplugins;importjava.io.File;impo
流程:
 
 
代码:
package com.han.log4jplugins;
 
import java.io.File;
import java.io.FilenameFilter;
import java.io.IOException;
import java.io.InterruptedIOException;
import java.io.Serializable;
import java.net.URI;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collections;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.List;
import java.util.Locale;
import java.util.TimeZone;
 
import org.apache.log4j.FileAppender;
import org.apache.log4j.Layout;
import org.apache.log4j.helpers.LogLog;
import org.apache.log4j.spi.LoggingEvent;
 
/**
* @项目名称:log4jplugins
* @类名称:CustomDailyRollingFileAppender
* @类描述:DailyRollingFileAppender extends FileAppender
* 重写RollingFileAppender类
* 实现maxBackupIndex限制日志文件数量功能(定时删除超过N天前的日志文件)
*
* @UserGuid 分log4j.xml或log4j.properties两种情况:
* 1)log4j.xml:设置中的class属性为:com.han.log4jplugins.CustomDailyRollingFileAppender;
* 2)log4j.properties:替换log4j.appender.debug=org.apache.log4j.RollingFileAppender中的RollingFileAppender,设置为com.han.log4jplugins.CustomDailyRollingFileAppender。
*
* @author HanZhijun
* @version V1.0.0
* @since 2018-03-01
*/
public class CustomDailyRollingFileAppender extends FileAppender {
 
// 初始化参数
static final int TOP_OF_TROUBLE = -1;
static final int TOP_OF_MINUTE = 0;
static final int TOP_OF_HOUR = 1;
static final int HALF_DAY = 2;
static final int TOP_OF_DAY = 3;
static final int TOP_OF_WEEK = 4;
static final int TOP_OF_MOnTH= 5;
 
/**
* 生产日志文件后缀("'.'yyyy-MM-dd")
*/
private String datePattern = "'.'yyyy-MM-dd";
 
/**
* 默认:1个日志文件
*/
protected int maxBackupIndex = 1;
 
/**
* 保存前一天的日志文件名称 =filename+("'.'yyyy-MM-dd")
*/
private String scheduledFilename;
 
// The next time we estimate a rollover should occur.
private long nextCheck = System.currentTimeMillis() - 1;
 
Date now = new Date();
 
SimpleDateFormat sdf;
 
RollingCalendar rc = new RollingCalendar();
 
int checkPeriod = TOP_OF_TROUBLE;
 
// The gmtTimeZone is used only in computeCheckPeriod() method.
static final TimeZone gmtTimeZOne= TimeZone.getTimeZone("GMT");
 
// 无参构造
public CustomDailyRollingFileAppender() {
 
}
 
/**
* 有参构造
* Instantiate aDailyRollingFileAppender and open the file designated byfilename.
* The opened filename will become the ouput destination for thisappender.
*
* @param layout
* @param filename
*/
public CustomDailyRollingFileAppender(Layout layout, String filename, String datePattern) throws IOException {
super(layout, filename, true);
this.datePattern = datePattern;
activateOptions();
}
 
public void setDatePattern(String pattern) {
datePattern = pattern;
}
 
public void setMaxBackupIndex(int maxBackups) {
this.maxBackupIndex = maxBackups;
}
 
public int getMaxBackupIndex() {
return maxBackupIndex;
}
 
public String getDatePattern() {
return datePattern;
}
 
@Override
public void activateOptions() {
super.activateOptions();
if (datePattern != null && fileName != null) {
now.setTime(System.currentTimeMillis());
sdf = new SimpleDateFormat(datePattern);
int type = computeCheckPeriod();
printPeriodicity(type);
rc.setType(type);
File file = new File(fileName);
scheduledFilename = fileName + sdf.format(new Date(file.lastModified()));
} else {
LogLog.error("EitherFile or DatePattern options are not set for appender [" + name + "].");
}
}
 
void printPeriodicity(int type) {
switch (type) {
case TOP_OF_MINUTE:
LogLog.debug("Appender[" + name + "] to be rolled every minute.");
break;
 
case TOP_OF_HOUR:
LogLog.debug("Appender[" + name + "] to be rolled on top of every hour.");
break;
 
case HALF_DAY:
LogLog.debug("Appender[" + name + "] to be rolled at midday and midnight.");
break;
 
case TOP_OF_DAY:
LogLog.debug("Appender[" + name + "] to be rolled at midnight.");
break;
 
case TOP_OF_WEEK:
LogLog.debug("Appender[" + name + "] to be rolled at start of week.");
break;
 
case TOP_OF_MONTH:
LogLog.debug("Appender[" + name + "] to be rolled at start of every month.");
break;
 
default:
LogLog.warn("Unknownperiodicity for appender [" + name + "].");
}
}
 
/*
* This method computes the roll over period by looping over the periods, starting with the shortest,
* and stopping when the r0 is different from from r1,
* where r0 is the epoch formatted according the datePattern (supplied by the user)
* and r1 is the epoch+nextMillis(i) formatted according to datePattern.
* All date formatting is done in GMT and not local format because the test logic is based on comparisons relative to 1970-01-01 00:00:00 GMT (the epoch).
*/
int computeCheckPeriod() {
RollingCalendar rollingCalendar = new RollingCalendar(gmtTimeZone, Locale.getDefault());
// set sate to 1970-01-01 00:00:00 GMT
Date epoch = new Date(0);
 
if (datePattern != null) {
for (int i = TOP_OF_MINUTE; i <= TOP_OF_MONTH; i++) {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(datePattern);
simpleDateFormat.setTimeZone(gmtTimeZone);// do all date
 
// formatting in GMT
String r0 = simpleDateFormat.format(epoch);
rollingCalendar.setType(i);
 
Date next = new Date(rollingCalendar.getNextCheckMillis(epoch));
 
String r1 = simpleDateFormat.format(next);
// System.out.println("Type = "+i+", r0 = "+r0+", r1 ="+r1);
if (r0 != null && r1 != null && !r0.equals(r1)) {
return i;
}
}
}
return TOP_OF_TROUBLE; // Deliberately head for trouble...
}
 
/**
* 核心方法:生成日志文件,并完成对备份数量的监测以及历史日志的删除
* Rollover the current file to a new file.
*/
void rollOver() throws IOException {
// 获取所有日志历史文件:并完成对备份数量的监测以及历史日志的删除
List files = getAllFiles();
 
Collections.sort(files);
// 如果文件数量不小于设置的最大备份数量,则启用日志删除策略
if (files.size() >= maxBackupIndex) {
int index = 0;
int diff = files.size() - (maxBackupIndex - 1);
 
for (ModifiedTimeSortableFile file : files) {
if (index >= diff)
break;
file.delete();
index++;
}
}
 
/* Compute filename, but only if datePattern is specified */
if (datePattern == null) {
errorHandler.error("MissingDatePattern option in rollOver().");
return;
}
 
LogLog.debug("maxBackupIndex=" + maxBackupIndex);
String datedFilename = fileName + sdf.format(now);
 
// It is too early to roll over because we are still within the bounds of the current interval.
// Rollover will occur once the next interval is reached.
if (scheduledFilename.equals(datedFilename)) {
return;
}
 
// close current file, and rename it to datedFilename
this.closeFile();
 
File target = new File(scheduledFilename);
if (target.exists()) {
target.delete();
}
 
File file = new File(fileName);
 
boolean result = file.renameTo(target);
if (result) {
LogLog.debug(fileName + " -> " + scheduledFilename);
} else {
LogLog.error("Failedto rename [" + fileName + "] to [" + scheduledFilename + "].");
}
 
try {
// This will also close the file. This is OK since multiple close operations are safe.
this.setFile(fileName, true, this.bufferedIO, this.bufferSize);
} catch (IOException e) {
errorHandler.error("setFile(" + fileName + ", true) call failed.");
}
scheduledFilename = datedFilename;
}
 
/**
*
* This method differentiatesDailyRollingFileAppender from its super class.
*

* Before actually logging, thismethod will check whether it is time to do a rollover. If it is,
* it willschedule the next rollover time and then rollover.
*
*/
@Override
protected void subAppend(LoggingEvent event) {
long n = System.currentTimeMillis();
 
if (n >= nextCheck) {
now.setTime(n);
nextCheck = rc.getNextCheckMillis(now);
 
try {
rollOver();
} catch (IOException ioe) {
if (ioe instanceof InterruptedIOException) {
Thread.currentThread().interrupt();
}
LogLog.error("rollOver()failed.", ioe);
}
}
super.subAppend(event);
}
 
/**
*
* 获取同一项目日志目录下所有文件
*
* This method searches list of log files
*
* based on the pattern given in the log4jconfiguration file
*
* and returns a collection
*
* @returnList
*
*/
private List getAllFiles() {
List files = new ArrayList();
 
FilenameFilter filter = new FilenameFilter() {
// 重写accept方法,确认是否是同一项目日志文件名称前缀。
 
@Override
public boolean accept(File dir, String name) {
String directoryName = dir.getPath();
LogLog.debug("directoryname: " + directoryName);
File file = new File(fileName);
String perentDirectory = file.getParent();
 
if (perentDirectory != null) {
// name=demo.log
// directoryName= /logs ,
// 直接fileName.substring(directoryName.length());切割之后的localFile=/demo.log…,会导致name.startsWith(localFile)始终是false
// so解决方案:长度 +1
String localFile = fileName.substring(directoryName.length() + 1);
return name.startsWith(localFile);
}
return name.startsWith(fileName);
}
};
 
File file = new File(fileName);
String perentDirectory = file.getParent();
if (file.exists()) {
if (file.getParent() == null) {
String absolutePath = file.getAbsolutePath();
perentDirectory = absolutePath.substring(0, absolutePath.lastIndexOf(fileName));
}
}
 
File dir = new File(perentDirectory);
String[] names = dir.list(filter);
for (int i = 0; i
files.add(new ModifiedTimeSortableFile(dir + System.getProperty("file.separator") + names[i]));
}
return files;
 
}
 
}
 
/**
* 自定义file类,重写compareTo方法,比较文件的修改时间
*
* The ClassModifiedTimeSortableFile extends java.io.File class and
*
* implements Comparable to sortfiles list based upon their modified date
*
*/
class ModifiedTimeSortableFile extends File implements Serializable, Comparable {
private static final long serialVersiOnUID= 1373373728209668895L;
 
public ModifiedTimeSortableFile(String parent, String child) {
super(parent, child);
}
 
public ModifiedTimeSortableFile(URI uri) {
super(uri);
}
 
public ModifiedTimeSortableFile(File parent, String child) {
super(parent, child);
}
 
public ModifiedTimeSortableFile(String string) {
super(string);
}
 
@Override
public int compareTo(File anotherPathName) {
long thisVal = this.lastModified();
long anotherVal = anotherPathName.lastModified();
return (thisVal
}
 
}
 
/**
*
* RollingCalendar is a helper class toDailyRollingFileAppender.
*
* Given a periodicity type and the currenttime, it computes the
*
* start of the next interval.
*
*/
class RollingCalendar extends GregorianCalendar {
private static final long serialVersiOnUID= -8295691444111406775L;
int type = CustomDailyRollingFileAppender.TOP_OF_TROUBLE;
 
RollingCalendar() {
super();
}
 
RollingCalendar(TimeZone tz, Locale locale) {
super(tz, locale);
}
 
void setType(int type) {
this.type = type;
}
 
public long getNextCheckMillis(Date now) {
return getNextCheckDate(now).getTime();
}
 
public Date getNextCheckDate(Date now) {
 
this.setTime(now);
switch (type) {
case CustomDailyRollingFileAppender.TOP_OF_MINUTE:
this.set(Calendar.SECOND, 0);
this.set(Calendar.MILLISECOND, 0);
this.add(Calendar.MINUTE, 1);
break;
 
case CustomDailyRollingFileAppender.TOP_OF_HOUR:
this.set(Calendar.MINUTE, 0);
this.set(Calendar.SECOND, 0);
this.set(Calendar.MILLISECOND, 0);
this.add(Calendar.HOUR_OF_DAY, 1);
break;
 
case CustomDailyRollingFileAppender.HALF_DAY:
this.set(Calendar.MINUTE, 0);
this.set(Calendar.SECOND, 0);
this.set(Calendar.MILLISECOND, 0);
int hour = get(Calendar.HOUR_OF_DAY);
if (hour <12) {
this.set(Calendar.HOUR_OF_DAY, 12);
} else {
this.set(Calendar.HOUR_OF_DAY, 0);
this.add(Calendar.DAY_OF_MONTH, 1);
}
break;
 
case CustomDailyRollingFileAppender.TOP_OF_DAY:
this.set(Calendar.HOUR_OF_DAY, 0);
this.set(Calendar.MINUTE, 0);
this.set(Calendar.SECOND, 0);
this.set(Calendar.MILLISECOND, 0);
this.add(Calendar.DATE, 1);
break;
 
case CustomDailyRollingFileAppender.TOP_OF_WEEK:
this.set(Calendar.DAY_OF_WEEK, getFirstDayOfWeek());
this.set(Calendar.HOUR_OF_DAY, 0);
this.set(Calendar.MINUTE, 0);
this.set(Calendar.SECOND, 0);
this.set(Calendar.MILLISECOND, 0);
this.add(Calendar.WEEK_OF_YEAR, 1);
break;
 
case CustomDailyRollingFileAppender.TOP_OF_MONTH:
this.set(Calendar.DATE, 1);
this.set(Calendar.HOUR_OF_DAY, 0);
this.set(Calendar.MINUTE, 0);
this.set(Calendar.SECOND, 0);
this.set(Calendar.MILLISECOND, 0);
this.add(Calendar.MONTH, 1);
break;
 
default:
throw new IllegalStateException("Unknown periodicity type.");
}
 
return getTime();
}
}
 
对应的log4j配置文件的设置:
 
 
 
 
 
功能测试类:
package com.han.log4jplugins;
 
import java.io.File;
import java.net.URL;
 
import org.apache.log4j.Logger;
import org.apache.log4j.PropertyConfigurator;
 
/**
* 自定义每天日志文件生成策略的测试类
*
* @author HanZhijun
* @version V1.0.0
* @since 2018-03-01
*/
public class CustomDailyRollingFileAppenderTest {
private static Logger logger = Logger.getLogger(CustomDailyRollingFileAppenderTest.class);
 
public static void main(String[] args) {
String cOnfigFile= "log4j.xml";
final File file = new File(configFile);
if(!file.exists()) {
final URL url = CustomDailyRollingFileAppenderTest.class.getClassLoader().getResource("log4j.xml");
cOnfigFile= url.getPath();
}
 
PropertyConfigurator.configure(configFile);
logger.info("11111");
}
 
}

推荐阅读
  • 大数据Hadoop生态(20)MapReduce框架原理OutputFormat的开发笔记
    本文介绍了大数据Hadoop生态(20)MapReduce框架原理OutputFormat的开发笔记,包括outputFormat接口实现类、自定义outputFormat步骤和案例。案例中将包含nty的日志输出到nty.log文件,其他日志输出到other.log文件。同时提供了一些相关网址供参考。 ... [详细]
  • 本文讨论了在shiro java配置中加入Shiro listener后启动失败的问题。作者引入了一系列jar包,并在web.xml中配置了相关内容,但启动后却无法正常运行。文章提供了具体引入的jar包和web.xml的配置内容,并指出可能的错误原因。该问题可能与jar包版本不兼容、web.xml配置错误等有关。 ... [详细]
  • 今天就跟大家聊聊有关怎么在Android应用中实现一个换肤功能,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根 ... [详细]
  • Nginx使用(server参数配置)
    本文介绍了Nginx的使用,重点讲解了server参数配置,包括端口号、主机名、根目录等内容。同时,还介绍了Nginx的反向代理功能。 ... [详细]
  • 本文介绍了Java工具类库Hutool,该工具包封装了对文件、流、加密解密、转码、正则、线程、XML等JDK方法的封装,并提供了各种Util工具类。同时,还介绍了Hutool的组件,包括动态代理、布隆过滤、缓存、定时任务等功能。该工具包可以简化Java代码,提高开发效率。 ... [详细]
  • android listview OnItemClickListener失效原因
    最近在做listview时发现OnItemClickListener失效的问题,经过查找发现是因为button的原因。不仅listitem中存在button会影响OnItemClickListener事件的失效,还会导致单击后listview每个item的背景改变,使得item中的所有有关焦点的事件都失效。本文给出了一个范例来说明这种情况,并提供了解决方法。 ... [详细]
  • 本文介绍了Perl的测试框架Test::Base,它是一个数据驱动的测试框架,可以自动进行单元测试,省去手工编写测试程序的麻烦。与Test::More完全兼容,使用方法简单。以plural函数为例,展示了Test::Base的使用方法。 ... [详细]
  • 本文介绍了在Mac上搭建php环境后无法使用localhost连接mysql的问题,并通过将localhost替换为127.0.0.1或本机IP解决了该问题。文章解释了localhost和127.0.0.1的区别,指出了使用socket方式连接导致连接失败的原因。此外,还提供了相关链接供读者深入了解。 ... [详细]
  • Android系统移植与调试之如何修改Android设备状态条上音量加减键在横竖屏切换的时候的显示于隐藏
    本文介绍了如何修改Android设备状态条上音量加减键在横竖屏切换时的显示与隐藏。通过修改系统文件system_bar.xml实现了该功能,并分享了解决思路和经验。 ... [详细]
  • 标题: ... [详细]
  • 带添加按钮的GridView,item的删除事件
    先上图片效果;gridView无数据时显示添加按钮,有数据时,第一格显示添加按钮,后面显示数据:布局文件:addr_manage.xml<?xmlve ... [详细]
  • Java如何导入和导出Excel文件的方法和步骤详解
    本文详细介绍了在SpringBoot中使用Java导入和导出Excel文件的方法和步骤,包括添加操作Excel的依赖、自定义注解等。文章还提供了示例代码,并将代码上传至GitHub供访问。 ... [详细]
  • 本文介绍了禅道作为一款国产开源免费的测试管理工具的特点和功能,并提供了禅道的搭建和调试方法。禅道是一款B/S结构的项目管理工具,可以实现组织管理、后台管理、产品管理、项目管理和测试管理等功能。同时,本文还介绍了其他软件测试相关工具,如功能自动化工具和性能自动化工具,以及白盒测试工具的使用。通过本文的阅读,读者可以了解禅道的基本使用方法和优势,从而更好地进行测试管理工作。 ... [详细]
  • Struts2+Sring+Hibernate简单配置
    2019独角兽企业重金招聘Python工程师标准Struts2SpringHibernate搭建全解!Struts2SpringHibernate是J2EE的最 ... [详细]
  • python3 logging
    python3logginghttps:docs.python.org3.5librarylogging.html,先3.5是因为我当前的python版本是3.5之所 ... [详细]
author-avatar
手机用户2502924593
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有