美文网首页
Spring 读取properties文件中文乱码问题解决~

Spring 读取properties文件中文乱码问题解决~

作者: Cocoonshu粽子 | 来源:发表于2018-01-12 18:17 被阅读1188次

在平时开发过程中~经常会用读取properties文件的情况,properties文件中文乱码也经常会遇到,以下是我的填坑步骤:

一、在引用org.springframework.beans.factory.config.PropertyPlaceholderConfigurer的时候有一个编码配置属性,配置为UTF-8 就Ok~

    <!-- 属性文件读入 -->
    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations">
            <list>
                <value>classpath:props/*.properties</value>
            </list>
        </property>
        <property  name="fileEncoding" value="UTF-8"/>
    </bean>

二、你的properties文件的编码一定要是UTF-8的,不然即使你配置的fileEncoding属性读取中文也还是乱码的~

相关文章

网友评论

      本文标题:Spring 读取properties文件中文乱码问题解决~

      本文链接:https://www.haomeiwen.com/subject/kiofoxtx.html