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