用 eclipse-->run as --> maven test 就出现中文乱码
解决方法一:
<properties> <argLine>-Dfile.encoding=UTF-8</argLine> </properties>
解决方法二:
<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>
<argLine>-Dfile.encoding=UTF-8</argLine>
<!-- <systemProperties> -->
<!-- <property> -->
<!-- <name>net.sourceforge.cobertura.datafile</name> -->
<!-- <value>target/cobertura/cobertura.ser</value> -->
<!-- </property> -->
<!-- </systemProperties> -->
</configuration>
</plugin>
</plugins>
</build>




