欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Intellij Idea乱码解决方案

程序员文章站 2022-06-25 17:05:21
使用Intellij Idea经常遇到的三种乱码问题: 1、工程代码乱码 2、main方法运行,控制台乱码 3、tomcat运行,控制台乱码 解决方案: 1.工程代码乱码 Settings > Editor > File Encodings > Global Encodings & Project ......

使用Intellij Idea经常遇到的三种乱码问题:

1、工程代码乱码

2、main方法运行,控制台乱码

3、tomcat运行,控制台乱码

解决方案:

1.工程代码乱码

Settings > Editor > File Encodings > Global Encodings & Project Encodings 设置为:UTF-8

Intellij Idea乱码解决方案

2.main方法运行,控制台乱码

Settings > Build, Execution, Deployment > Compiler > Java Compiler > Additional command line parameters > 设置为:-encoding utf-8

Intellij Idea乱码解决方案

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