Hello everybody, I use xstream for a year. It's work very well. But now I got a problem. I would like to write an xml file from an input xml file. And I would like to preserve the order of input attributes to the output file.
Now looks like this: *INPUT:<test a="w" b="I" c="553.0" d="1.0"/>OUTPUT:<test b="I" a="w" d="1.0" c="553.0"/>* Expected result: *INPUT:<test a="w" b="I" c="553.0" d="1.0"/>OUTPUT:<test a="w" b="I" c="553.0" d="1.0"/>* What can I do in this case? Do you have any ideas? Thank you! -- Best regards, Mark Pasztor
