properties解决中文乱码

Posted li-lun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了properties解决中文乱码相关的知识,希望对你有一定的参考价值。

读取 properties文件,解决中文乱码
        ConfigurableEnvironment environment = context.getEnvironment();
            String env=environment.getActiveProfiles()[0];
            Properties   pro = new Properties();
            Map<String, String> mpro = new HashMap<String, String>();
            String proName ="/application-"+env+".properties";
            InputStreamReader isr=null;
            isr=new InputStreamReader( this.getClass().getResourceAsStream(proName),"UTF-8");
            pro.load(isr);
            Iterator<String> it=pro.stringPropertyNames().iterator();
            shopAppTabs= pro.getProperty("lanhu.appTab.shopAppTab");

使用apollo读取,当前类添加@EnableApolloConfig,读取对应namespace

 Config config = ConfigService.getConfig("RD.int-spring-qpl-shop");
config.getProperty("lanhu.appTab.shopAppTab","")

以上是关于properties解决中文乱码的主要内容,如果未能解决你的问题,请参考以下文章

properties解决中文乱码

idea各种中文显示乱码解决大全

IDEA properties中文乱码问题解决方法

idea中使用Properties中文乱码解决

解决Eclipse中.properties文件中文乱码问题

MyEclipse/Eclipse中properties文件中文乱码问题解决