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

基于Intellij Idea乱码的解决方法

程序员文章站 2022-06-30 23:46:32
使用intellij idea经常遇到的三种乱码问题: 1、工程代码乱码 2、main方法运行,控制台乱码 3、tomcat运行,控制台乱码 解决方案: 1.工程...

使用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

以上这篇基于intellij idea乱码的解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。