超级版主
- UID
- 3
- 帖子
- 1029
- 精华
- 1
- 积分
- 10
- 阅读权限
- 150
- 在线时间
- 371 小时
- 注册时间
- 2008-10-22
- 最后登录
- 2024-10-21
|
1#
大 中
小 发表于 2024-6-21 13:47 只看该作者
Idea2016中的tomcat日志有乱码
原因分析 - 问题是由于tomcat使用的编码和操作系统使用的编码不一致导致;
- Windows11默认使用的编码为GBK,tomcat默认使用的编码为UTF-8
修改配置文件:tomcat安装目录\conf\logging.properties
# java.util.logging.ConsoleHandler.encoding = UTF-8
java.util.logging.ConsoleHandler.encoding = GBK
亲测,管用
|