ㄓㄤㄑㄧㄤ

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 @ 2016-06-06 17:37  ㄓㄤㄑㄧㄤ  阅读(23387)  评论(2编辑  收藏  举报
哈哈,页脚部分。