Java使用ResourceBundle類讀取properties檔案中文亂碼的解決方案
Java使用java.util.ResourceBundle類的方式來讀取properties檔案時不支援中文,要想支援中文必須將檔案設定為ISO-8859-1編碼格式,這對於開發工具預設為UTF-8來說很不友好,而且就算用ISO-8859-1編碼,當其他人將這個專案匯入開發工具時很容易出現這個properties檔案中的內容有亂碼(前提是該檔案中包含中文)。
//傳統的解決方式:檔案設定為ISO-8859-1編碼格式
public static void main(String[] args) { ResourceBundle rb = ResourceBundle.getBundle("weixinreply"); String kefuReply= null; try { //這樣直接讀取中文會亂碼 kefuReply = rb.getString("kefureply_festival"); System.out.println("kefuReply=" + kefuReply); //這樣讀取中文不會亂碼 kefuReply = new String(rb.getString("kefureply_festival").getBytes("ISO-8859-1"),"GBK");/ System.out.println("kefuReply=" + kefuReply); }catch (UnsupportedEncodingException e) { e.printStackTrace(); } }
//更加人性化的解決方式:檔案設定為UTF-8編碼格式,並且在spring載入properties檔案時指定為UTF-8編碼格式,在使用的類中通過spring的 @Value("${key}")註解來獲取properties檔案中對應的值。
app-env-config.xml檔案中定義如下內容
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="fileEncoding" value="UTF-8"/> <property name="locations"> <list> <value>classpath:weixinreply.properties</value> </list> </property> </bean>
app-env-config.xml需要在applicationContext.xml檔案中引入,這樣才能保證 @Value("${key}")註解在Controller層和Service層都能獲取到值,否者很容易造成 @Value("${key}")註解在Controller層獲取不到值而報錯。
參考:
https://blog.csdn.net/zsg88/article/details/74852942
https://blog.csdn.net/J3oker/article/details/53839210
https://blog.csdn.net/Weiral/article/details/52875307
https://blog.csdn.net/qq_21033663/article/details/78067983
https://blog.csdn.net/Brookes/article/details/1508539
https://blog.csdn.net/joecheungdishuiya/article/details/6304993
全文完
:)
版權宣告:本文為博主原創文章,未經博主允許不得轉載。原文地址:https://www.cnblogs.com/poterliu/p/10159577.html 聯絡郵箱:[email protected] 聯絡微信:poterliu 或者掃二維碼
|