Java将中文转换为unicode码(用于properties配置文件)

properties配置文件使用的是unicode码。

不可以直接在里面写中文,JDK提供了


native2ascii这个方法。

 1、只转换特定字符
  在控制台中可以输入汉字回车后,就可以看到转移后的 字符 了。
  Ctrl+C退出。
   2、转换properties文件  
native2ascii allMessages_zh_CN.input.properties allMessages_zh_CN.properties
  将文件allMessages_zh_CN.input.properties编码后输出为allMessages_zh_CN.properties。
  为了方便properties文件的管理,建议纯中文的配置文件用input命名。
   3、反向单一properties文件  
native2ascii -reverse allMessages_zh_CN.properties allMessages_zh_CN.txt
  注意-reverse参数
   4、批量反向所有的properties文件
  JDK自带的工具native2ascii可以将uncode编码的文件转换为本地编码的文件,但是不能批量转换文件。


二、自己编写转换方法
这样,我们在程序里处理起来会更灵活!
public static String str2unicode(final String gbString) {
		char[] utfBytes = gbString.toCharArray();
		String unicodeBytes = "";
		for (int byteIndex = 0; byteIndex < utfBytes.length; byteIndex++) {
			String hexB = Integer.toHexString(utfBytes[byteIndex]);
			if (hexB.length() <= 2) {
				hexB = "00" + hexB;
			}
			unicodeBytes = unicodeBytes + "\\\\u" + hexB;
		}
		return unicodeBytes;
	}





你可能感兴趣的:(Java将中文转换为unicode码(用于properties配置文件))