Tomcat打印的内容在server控制台上显示乱码,其他的日志中文信息都正常
情况

解决方法
方法一:强行设置标准输出流编码
try {
System.setOut(new PrintStream(System.out, true, "UTF-8"));
} catch (UnsupportedEncodingException e) {
throw new RuntimeException(e);
}

try {
System.setOut(new PrintStream(System.out, true, "UTF-8"));
} catch (UnsupportedEncodingException e) {
throw new RuntimeException(e);
}