IDEA控制台乱码解决

Posted ysgcs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA控制台乱码解决相关的知识,希望对你有一定的参考价值。

解决办法:

技术分享图片

 

打开Intellij的安装的bin目录(D:Program FilesJetBrainsIntelliJ IDEA 14.0in ),找到上图的两个文件(根据你的系统是32位或64位选择其中一个配置文件),在配置文件中添加:

1
-Dfile.encoding=UTF-8

  

配置项目编码及IDE编码

技术分享图片

进入settings,选择File Encodings,把IDE Encoding和Project Encoding配置为UTF-8,同时将下面的Default encoding for properties files也配置为UTF-8。

配置项目启动服务器参数,在tomcat配置中

技术分享图片

在VM options 项中添加

1
-Dfile.encoding=UTF-8

  

1.tomcat输出到控制台(console)出现中文乱码,设置Run/Debug Configuration中设置environment variables 来解决。

Idea=>Run=>Edit Configuration,弹出的对话框中,在Startup/Connection 中Run中添加environment variables

JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF-8.如下图所示:

技术分享图片

 

 

2.对于maven构建的项目,由于idea中maven的配置优先,需要在pom.xml中对maven-surefire-plugin进行配置。

如下图所示

   <plugins>

      <plugin>

        <groupId>org.apache.maven.plugins</groupId>

        <artifactId>maven-surefire-plugin</artifactId>

        <version>2.12.4</version>

        <configuration>

          <forkMode>once</forkMode>

          <argLine>-Dfile.encoding=UTF-8</argLine>

        </configuration>

      </plugin>

    </plugins>

以上是关于IDEA控制台乱码解决的主要内容,如果未能解决你的问题,请参考以下文章

IntelliJ IDEA 乱码解决方案 (项目代码控制台等)

Intellij Idea乱码解决方案

IDEA控制台乱码怎么解决

解决idea server 控制台乱码问题

解决IDEA控制台中文乱码问题

解决idea中tomcat 控制台乱码问题