Can somebody please help me.
I'm complete novice in XML.
The only program i understand is DbaseIV language.
The data comes in XML file.
I want to change the table automatic (?java) without losing the content
Example:
<orders>
<order_id>1</order_id>
<user_id>64</user_id>
<vendor_id>41 2</vendor_id>
I want to change this automaticly in:
<orders>
<order>1</order>
<user>64</user>
<vendor>412</vendor>
So order_id must be changed in order, vendor_id must be changed in vendor etc.
After that i can read it in another program with another protocol of data
Can it by Java or ...
Thanks for your help.Jos email info@jmoeskops. nl
I'm complete novice in XML.
The only program i understand is DbaseIV language.
The data comes in XML file.
I want to change the table automatic (?java) without losing the content
Example:
<orders>
<order_id>1</order_id>
<user_id>64</user_id>
<vendor_id>41 2</vendor_id>
I want to change this automaticly in:
<orders>
<order>1</order>
<user>64</user>
<vendor>412</vendor>
So order_id must be changed in order, vendor_id must be changed in vendor etc.
After that i can read it in another program with another protocol of data
Can it by Java or ...
Thanks for your help.Jos email info@jmoeskops. nl
Comment