标签: java
我从ini文件加载属性:
input = new FileInputStream("props.ini"); Properties prop = new Properties(); prop.load(input);
我需要在key中编写一些特殊的char,我只能在HEX表示中使用props.ini文件。类似的东西:
props.ini
AAA\x41=0
使用A代替\x41
A
\x41
如何实现?
我使用java 1.4并且无法改变它。