重複の可能性:
Javaで出力されたファイルのXML属性の順序を制御する
私はこのコードを持っています:
Element node = testDoc.createElement("image_file");
node.setAttribute("id", count);
node.setAttribute("file_name", fileNameCombinedWithPNG);
私のXMLはfilename
、id
何をしても、設定された属性の順序を切り替えても、XMLの出力は同じように見えます。つまり、次のようになります。
image_file filename="xyz" id="1" as but I want is image_file id="1" filename="adfx"