Intellij Idea乱码解决方案都在这里了
乱码场景
使用Intellij Idea经常遇到乱码问题,可以总结为以下几类乱码的场景。
1、工程代码乱码。
2、main方法运行,控制台乱码。
3、tomcat运行,控制台乱码。
解决方案
1、工程代码乱码
Settings > Editor > File Encodings > Global Encodings & Project Encodings 设置为:
UTF-8
。
2、main方法运行,控制台乱码
Settings > Build, Execution, Deployment > Compile > Java Compiler > Additional command line parameters > 设置为:
-encoding utf-8
。
3、tomcat运行,控制台乱码
Edit Configurations > Tomcat Server > server > VM options > 设置为:
-Dfile.encoding=UTF-8
。
idea > bin > idea.exe.vmoptions或者idea64.exe.vmoptions配置文件末尾添加:
-Dfile.encoding=UTF-8
。
关注Java技术栈微信公众号,在后台回复关键字:IDEA,获取更多 IDEA 技术文章。
关注微信公众号福利!!!
回复关键字「666」获取一份最新 Java 架构资料,你要的都有!
回复关键字「Java」获取JVM, 多线程等Java技术系列教程;
回复关键字「spring」获取Spring, Spring Boot, Spring Cloud教程;
回复关键字「架构」获取分布式、微服务、架构、高并发等系列干货;
回复关键字「面试」获取各种 Java 面试题及答案、面试实战经验;