Search

Java - 使用 Maven + JUnit 測試時中文出現亂碼

2015-09-24 7:57 PM

若出現中文顯示為亂碼的情形

可直接在 pom.xml 加入編碼設定即可

程式碼範例
<!-- Surefire test plugin -->
<plugin>
 <groupId>org.apache.maven.plugins</groupId>
 <artifactId>maven-surefire-plugin</artifactId>
 <version>2.17</version>
 <!-- 預防使用 Maven test 時中文顯示為亂碼 -->
 <configuration>
  <argLine>-Dfile.encoding=UTF-8</argLine>
 </configuration>
</plugin>
各項資料連結
Maven Surefire

No comments:

Post a Comment