Intellij IDEA 最新乱码解决必杀技,建议收藏!
大家在使用 intellij idea 的时候会经常遇到各种乱码问题,甚是烦扰。
栈长也偶尔会用下idea,也有一些解决乱码的经验,我给大家总结了以下几类乱码的场景,绝壁能帮你解决 idea 各种乱码问题。
常见乱码场景及解决方案
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
。
如果还乱码,继续往下设置。
idea > help 菜单 > edit custom vm options...菜单,编辑配置文件,在末尾添加:
-dfile.encoding=utf-8
。
好了,今天的表演就到这了,倍儿爽,建议收藏+转发,日后绝对有用~
关注java技术栈微信公众号,栈长将继续分享 intellij idea 的实战教程,公众号第一时间推送,持续关注。
在java技术栈微信公众号后台回复:idea,获取栈长整理的更多的 intellij idea 教程,都是实战干货,以下仅为部分预览。
- intellij idea 最常用配置详细图解
- intellij idea 非常6的10个姿势
- intellij idea 所有乱码解决方案
- intellij idea 阅读源码的4个绝技
- intellij idea debug调试技巧
- ……
如果你喜欢 idea, 可以点击阅读原文链接加入我们的知识星球,我会经常在上面分享 idea 的使用小技巧,对 idea 有什么不懂的也可以在上面向我和大家提问。
推荐去我的博客阅读更多:
2.spring mvc、spring boot、spring cloud 系列教程
3.maven、git、eclipse、intellij idea 系列工具教程
觉得不错,别忘了点赞+转发哦!
上一篇: Java编码规范整理汇总
下一篇: Python基础知识(一)