码迷,mamicode.com
首页 > 其他好文 > 详细

classLoader.getResourceAsStream中文乱码

时间:2018-12-06 17:48:22      阅读:372      评论:0      收藏:0      [点我收藏+]

标签:hellip   stream   context   nbsp   new   thread   reader   utf-8   优化   

  一直用一个方法安然无恙,今天在新项目中突然乱码了,原代码:

        ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
        
        InputStream is = null;
        is = classLoader.getResourceAsStream("config/constant.properties");
        if (is != null) 
        {
            try
            {
                props.load(is);
            }

 

 

优化后:

    static  
    {
        ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
        
        InputStream is = null;
        is = classLoader.getResourceAsStream("config/constant.properties");
        if (is != null) 
        {
            try
            {
                props.load(new InputStreamReader(is,"UTF-8"));
            }
……

   

classLoader.getResourceAsStream中文乱码

标签:hellip   stream   context   nbsp   new   thread   reader   utf-8   优化   

原文地址:https://www.cnblogs.com/yanan7890/p/10077251.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!