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

解决在读取properties文件中出现中文报错问题

时间:2019-08-17 21:42:14      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:new   resource   中文   问题   rac   load   解决   str   path   

// 读取properties中的参数
        Properties properties = new Properties();
        // 读取properties文件  使用InputStreamReader来解决中文报错问题
        InputStreamReader inputStreamReader = null;
//        InputStream inputStream = Main.class.getResourceAsStream("/file.properties");
        // 需要遍历的路径  --在properties文件中
        String path = "";
        try {
            inputStreamReader =  new InputStreamReader(Main2.class.getResourceAsStream("/file.properties"),"UTF-8");
            properties.load(inputStreamReader);
            // 读取到properties中的参数 赋值给path
            path = properties.getProperty("path");
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            // 释放inputStream
            try {
                inputStreamReader.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

  

解决在读取properties文件中出现中文报错问题

标签:new   resource   中文   问题   rac   load   解决   str   path   

原文地址:https://www.cnblogs.com/CanBlog/p/11370335.html

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