Tomcat日志信息有乱码的处理方法
1、问题描述
1.1、Idea中的tomcat日志有乱码
1.2、直接启动tomcat的日志有乱码
1.3、原因分析
-
问题是由于tomcat使用的编码和操作系统使用的编码不一致导致;
-
Windows10默认使用的编码为GBK,tomcat默认使用的编码为UTF-8;
2、解决方法
2.1、找到tomcat日志的配置文件
文件路径:tomcat安装目录\conf\logging.properties
2.2、修改控制台日志编码为GBK
# java.util.logging.ConsoleHandler.encoding = UTF-8
java.util.logging.ConsoleHandler.encoding = GBK
3、测试效果
3.1、Idea中的tomcat日志无乱码
3.2、直接启动tomcat的日志无乱码
本文参考
本文来自博客园,作者:Javaer1995,转载请注明原文链接:https://www.cnblogs.com/Javaer1995/p/17714074.html