Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm parsing a generic JSON to a XML using net.sf.json. (I'm not using POJO Obj in the conversion)

Json that I'm converting:

{
    "root": {
        "accountId": "1000",
        "Items": [
            {
                "cost": 0.1,
                "debit": 0.1
            },
            {
                "cost": 0.2,
                "debit": 0.2
            } 
        ] 
    }
}

When dealing with vectors I'm receiving:

<root>
    <entry>
        <accountId>1000</accountId>
        <Items>
            <e>
                <cost>0.1</cost>
                <debit>0.1</debit>
            </e>
            <e>
                <cost>0.2</cost>
                <debit>0.2</debit>
            </e>
        </Items>
    </entry>
</root>

When the correct for my point of view should be:

<root>
    <entry>
        <accountId>1000</accountId>
        <Items>
                <cost>0.1</cost>
                <debit>0.1</debit>
        </Items>
        <Items>
                <cost>0.2</cost>
                <debit>0.2</debit>
        </Items>
    </entry>
</root>

Do anyone have used this lib and could help me?

Any tips could help!

Thanks in advance

share|improve this question
FWIW, that structure looks fine to me. Items is a list; it has entries (e). Although your second structure is valid, it's usually better to have containers around your lists. (If you don't, I'd drop the "s" from the end of the element name, since Items will now represent an item [singular].) – T.J. Crowder Apr 15 '10 at 23:18
Not well-formed XML: <Id>1</accountId> – Vladimir Dyuzhev Apr 16 '10 at 0:56
Looks like a bug in the lib. Can you show us the original JSON? – Vladimir Dyuzhev Apr 16 '10 at 0:56
@Vladmin: accountId is a typo I change some fields to looks more simple here – Castanho Apr 16 '10 at 13:28
If you're still looking for a solution, and don't mind adding another library, the Practical XML converter will do this: sourceforge.net/projects/practicalxml -- full disclosure: I'm admin and main contributor to this project – kdgregory Apr 25 '10 at 12:49
show 1 more comment

1 Answer

Change the JSON to this format..

{ "root": { "accountId": "1000", "Items":{"Item":{"cost": 0.1,"debit": 0.1,"cost": 0.2,"debit": 0.2} } } }

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.