1. 程式人生 > 程式設計 >PropertiesLoaderUtils 出現中文亂碼的解決方式

PropertiesLoaderUtils 出現中文亂碼的解決方式

我就廢話不多說了,大家還是直接看程式碼吧~

   try
    {
      EncodedResource encodedResource = new EncodedResource(new ClassPathResource(path),Charsets.UTF_8);
      Properties properties = PropertiesLoaderUtils.loadProperties(encodedResource);
    }
    catch (IOException e)
    {
 
      LOGGER.info("Champion:read properties failure",e);
 
    }

補充知識:使用Spring PropertyPlaceholderConfigurer 配置中文出現亂碼的解決方法

問題描述

在使用org.springframework.beans.factory.config.PropertyPlaceholderConfigurer 讀取配置檔案時,發現對於中文的處理會出現亂碼現象,比如有如下的配置項及其內容:

content.shell=#!/bin/bash \necho "test,測試一下!!" \nsleep $1

採用如下的配置方式:

<bean id="propertyConifgurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  <property name="location">
    <value>classpath:evn.properties</value>
  </property>
</bean>

通過Spring獲取到的配置項內容,中文變成了亂碼。

解決方法

通過了解類org.springframework.beans.factory.config.PropertyPlaceholderConfigurer的繼承關係,發現父類org.springframework.core.io.support.PropertiesLoaderSupport中有這樣的屬性fileEncoding,這一屬性的使用是在loadProperties方法中:

  /**
   * Load properties into the given instance.
   * @param props the Properties instance to load into
   * @throws IOException in case of I/O errors
   * @see #setLocations
   */
  protected void loadProperties(Properties props) throws IOException {
    if (this.locations != null) {
      for (Resource location : this.locations) {
        if (logger.isInfoEnabled()) {
          logger.info("Loading properties file from " + location);
        }
        try {
          PropertiesLoaderUtils.fillProperties(
              props,new EncodedResource(location,this.fileEncoding),this.propertiesPersister);
        }
        catch (IOException ex) {
          if (this.ignoreResourceNotFound) {
            if (logger.isWarnEnabled()) {
              logger.warn("Could not load properties from " + location + ": " + ex.getMessage());
            }
          }
          else {
            throw ex;
          }
        }
      }
    }
  }

通過新增fileEncoding=utf-8屬性可以解決上述問題:

<bean id="propertyConifgurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  <property name="location">
    <value>classpath:evn.properties</value>
  </property>
  <property name="fileEncoding">
    <value>utf-8</value>
  </property>
</bean>

以上這篇PropertiesLoaderUtils 出現中文亂碼的解決方式就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援我們。