Properties文件中文属性读取是乱码问题
Posted 累人猿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Properties文件中文属性读取是乱码问题相关的知识,希望对你有一定的参考价值。
项目当中遇到了需要从Properties文件中读取配置属性的需求,本来是存储的中文转码后的属性,但是考虑到后期更改问题就变成java代码中进行转码,代码如下:
Properties pros = new Properties();
InputStream is=LoginController.class.getClassLoader().getResourceAsStream(
"sysConfig.properties");
String zdmc="";
String gsmc="";
String fwqmc="";
try {
pros.load(is);
zdmc=new String(pros.getProperty("zdmc").getBytes("ISO-8859-1"),"gbk");
gsmc =new String(pros.getProperty("gsmc").getBytes("ISO-8859-1"),"gbk");
fwqmc =new String(pros.getProperty("fwqmc").getBytes("ISO-8859-1"),"gbk");
} catch (IOException e) {
e.printStackTrace();
}finally {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
以上是关于Properties文件中文属性读取是乱码问题的主要内容,如果未能解决你的问题,请参考以下文章
springBoot使用@Value标签读取*.properties文件的中文乱码问题