在Java中,console.log
并不是一個(gè)內(nèi)置的功能。但是,你可以使用Java的日志框架(如Log4j、Logback等)來(lái)實(shí)現(xiàn)類(lèi)似的功能,并配置日志輪轉(zhuǎn)策略。
以下是一個(gè)使用Logback框架實(shí)現(xiàn)日志輪轉(zhuǎn)策略的示例:
pom.xml
文件中(如果使用Maven): <dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
</dependency>
</dependencies>
src/main/resources
目錄下創(chuàng)建一個(gè)名為logback.xml
的配置文件,然后添加以下內(nèi)容:<?xml version="1.0" encoding="UTF-8"?><configuration>
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>logs/app.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>logs/app-%d{yyyy-MM-dd}.log</fileNamePattern>
<maxHistory>30</maxHistory>
</rollingPolicy>
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<root level="info">
<appender-ref ref="FILE" />
</root>
</configuration>
這個(gè)配置文件定義了一個(gè)名為FILE
的appender,它將日志寫(xiě)入logs/app.log
文件。同時(shí),它使用了一個(gè)基于時(shí)間的滾動(dòng)策略,每天創(chuàng)建一個(gè)新的日志文件,文件名格式為app-日期.log
,并保留最近30天的日志文件。
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class Main {
private static final Logger logger = LoggerFactory.getLogger(Main.class);
public static void main(String[] args) {
logger.info("This is an info message.");
logger.error("This is an error message.");
}
}
現(xiàn)在,當(dāng)你運(yùn)行程序時(shí),日志將根據(jù)logback.xml
中定義的策略進(jìn)行輪轉(zhuǎn)。