ㄓㄤㄑㄧㄤ

Java读取properties配置文件时,中文乱码解决方法

复制代码
    public static String getConfig(String key) {
        Properties pros = new Properties();
        String value = "";
        try {
            pros.load(new InputStreamReader(Object.class.getResourceAsStream("/properties.properties"), "UTF-8"));
            value = pros.get(key).toString();
        } catch (IOException e) {
            log.error(e.getMessage());
        }
        return value;
    }
复制代码

 

posted @   ㄓㄤㄑㄧㄤ  阅读(23388)  评论(2编辑  收藏  举报
努力加载评论中...
哈哈,页脚部分。
点击右上角即可分享
微信分享提示