配置文件.properties文件编码——中文配置

在java开发中,常用到.properties属性配置文件。
1.中文与ASCII码的转换
通常在properties文件中配置中文的属性时,需要将中文转换成ASCII码格式,这种转换可以通过命令:
native2ascii 1.txt 2.txt
来实现,1.txt中内容包含中文,转换后的ASCII码字符将保存在2.txt文件中;命令:
native2ascii -reverse 1.txt 2.txt
可以将包含ASCII码转换成汉字。
2.在properties文件中将中文配置为ASCII码形式
一般的做法是将properties中的中文值例如“name=测试”转换为ASCII码格式“name=\u6d4b\u8bd5”配置。
以下代码中的ps.getProperty("name")取得值就是中文“测试”了。
InputStream is = new BufferedInputStream(new FileInputStream(new File(configFile)));
Properties ps = new Properties();
ps.load(is);
String name = ps.getProperty("name");

如果配置文件properties中配置成
name=测试
那么用上面的代码取得的name的值为乱码。
3.在properties中直接配置中文,不转换为ASCII码
有些需求情况下,为了用户配置程序的方便性,可能要求在properties中直接配置中文,而不用转换为ASCII码格式。
只需要将
String name = ps.getProperty("name");

修改为:
String name = ps.getProperty("name")==null?null:new String(ps.getProperty("name").getBytes("ISO8859-1"),"GBK");

然后就能直接在properties中配置中文了。

你可能感兴趣的:(java)