First things first, im no asking for a solution but a way to think.
I got some data that i need to serialize to check out later.. i know how to do it.. but the fields names are the problem...
The data structure contains:
Name of the Field
CoordX
CoordY
Value
(There are like.. 20 different fields. I need to check a biiiggggg string log...)
I could use a single String[][] or serveral Strings[] ... as i said.. the problem is how it appears on the xml...
If i do a single arraylist multidimensional -> [][] i got this
<teste>
<string-array>
<string>fieldName</string>
<string>x</string>
<string>y</string>
<string>value</string>
</string-array>
<string-array>
<string>fieldName</string>
<string>x</string>
<string>y</string>
<string>value</string>
</string-array>
</teste>
And if i do a single string[] i can put the name of the String as the field name
<Fieldname>
<string>X</string>
<string>y</string>
<string>Value</string>
</Fieldname>
I saw that normal alias is for ALL fields (@XStreamImplicit(itemFieldName="part")) and that dont solve my problem..
It could be worthless if on the other side when i do deserialization, check the log by line and no by field (i know line 1 is field name, line 2 is x..etc)..
So.. what do you guys think?
