解决使用Properties读取中文乱码问题

简介: 解决使用Properties读取中文乱码问题

引言


最近在维护一个两年前的系统,需要 调整配置文件中的内容,在编辑的时候, 发现在服务器上中文都是unicode类型显示,所以根本不能维护,当我将unicode 转换为中文显示的时候,发现程序读取出来的是乱码。我的项目使用的编码也是utf-8,但是我用Properties读取中文的时候,打印出来的总是乱码。


后来网上查了一下,得到如下结论:Properties 默认是按ISO-8859-1读取的,所以如果你想让它按照你想的格式显示就需要转换一下。


程序代码如下:


public static Properties getProperties(String name) {
        if (!name.contains(".")) {
            name += ".properties";
        }
        Properties p = new Properties();
        InputStream inputStream = null;
        try {
            inputStream = PropertiesUtils.class.getClassLoader().getResourceAsStream("properties/" + name);
            p.load(inputStream);
        } catch (IOException e1) {
            e1.printStackTrace();
        } finally {
            try {
                inputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return p;

我们发现在获得InputStream对象的时候没有就行编码转换。

修改如下:

public static Properties getProperties(String name) {
        if (!name.contains(".")) {
            name += ".properties";
        }
        Properties p = new Properties();
        InputStreamReader inputStream = null;
        try {
        //这句是关键
            inputStream = new InputStreamReader(PropertiesUtils.class.getClassLoader().getResourceAsStream("properties/" + name),"utf-8");
            p.load(inputStream);
        } catch (IOException e1) {
            e1.printStackTrace();
        } finally {
            try {
                inputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return p;
    }

通过上面转换,完美解决中乱码问题!

目录
相关文章
|
6月前
Properties转换成Map Map转Properties以及读取Properties乱码解决String转
Properties转换成Map Map转Properties以及读取Properties乱码解决String转
197 0
|
6月前
|
存储 自然语言处理 Java
ResourceBundle.getBundle()来读取自定义的properties配置文件
ResourceBundle.getBundle()来读取自定义的properties配置文件
171 1
|
3月前
Idea编码UTF-8中.properties 配置文件中文乱码
Idea编码UTF-8中.properties 配置文件中文乱码
59 3
|
3月前
|
Java
解决application.properties 中文乱码问题
解决application.properties 中文乱码问题
124 0
|
6月前
|
前端开发 Java Spring
properties配置文件的读取
properties配置文件的读取
|
XML 数据格式
XQilla2.3.2读取整个xml
XQilla2.3.2读取整个xml
读取application-dev.properties的中文乱码【bug】
读取application-dev.properties的中文乱码【bug】
67 1
|
Java 开发者
properties配置文件编码问题|学习笔记
快速学习properties配置文件编码问题
|
XML API 数据格式
QXmlStreamReader和QXmlStreamWriter实现将一个xml文件读取后保存为另一个xml
QXmlStreamReader和QXmlStreamWriter实现将一个xml文件读取后保存为另一个xml
|
XML 数据格式 开发者
XML中文乱码问题解决|学习笔记
快速学习XML中文乱码问题解决