Junit maven测试使用的是surefire这个插件。所以需要对这个插件配置一个文件编码的参数就可以了。还有一个前提就是你的项目已经设置了编码为UTF-8,如果你的项目没有设置为UTF-8,那么光有下面的配置你看到的还将是乱码。
<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> </configuration> </plugin>
了解 工作生活心情记忆 的更多信息
Subscribe to get the latest posts sent to your email.