1 场景
idea在控制台输出打印的时候,输出的内容有两种,一种是标准设备输出
(如System.out.println),一种是日志输出
(如log4j)。
默认情况下,标准设备输出中文无乱码,控制台输出中文存在乱码。因此需要进行设置,保证两种控制台输出中文正常。
2 步骤
(1)help->EditCustom VM Options...
配置文件中追加内容(重启idea后生效
):
-Dfile.encoding=UTF-8
(2)Run/Debug Configurations->tomcat->修改参数VM options
-Dfile.encoding=UTF-8
启动tomcat即可
网友评论