IDEA下使用Maven的test命令乱码的时候,加上 -Dfile.encoding=GBK 就可以解决啦
如下图所示:
或者在Maven的pom.xml文件中增加:
|---------------|-----------------------------------------------------------------------------|
| 1 2 3
| <properties> <argLine>-Dfile.encoding=UTF-8</argLine> </properties>
|