当一个节点设置属性的后,生成的XML文档这个节点的属性是按字母顺序排列的,能不能按我添加的属性显示出来呢?如
  element.setAttributeNode("b","2");
  element.setAttributeNode("a","1");
  element.setAttributeNode("c","3");
生成的XML文档是:<element a="1" b="2" c="3">我想它的顺序是:<element b="2" a="1" c="3">有办法解决么~?