其他分享
首页 > 其他分享> > Maven中文乱码解决-(eclipse)

Maven中文乱码解决-(eclipse)

作者:互联网

在pom.xml加入代码

把这个builld放在project中

<build>
            <plugins>
                <!-- 解决maven test命令时console出现中文乱码 -->
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.7.2</version>
                    <configuration>
                        <forkMode>once</forkMode><!--在一个进程中进行所有测试 ; 默认值:once -->
                        <argLine>-Dfile.encoding=UTF-8</argLine>
                    </configuration>
                </plugin>
            </plugins>
        </build>
 

 

******************************如有疑惑qq:751256037

标签:Maven,surefire,eclipse,乱码,pom,plugins,Dfile,maven
来源: https://blog.csdn.net/MmmxsBlogs/article/details/89047891