如何将java.util.Properties写入具有排序键的XML?
我想将属性文件存储为 XML。在执行此操作时,有没有办法对键进行排序,以便生成的 XML 文件将按字母顺序排列?
String propFile = "/path/to/file";
Properties props = new Properties();
/*set some properties here*/
try {
FileOutputStream xmlStream = new FileOutputStream(propFile);
/*this comes out unsorted*/
props.storeToXML(xmlStream,"");
} catch (IOException e) {
e.printStackTrace();
}