Fill a form with XML (Java) -


i have form , xml, , fill form xml datas.

the xml file have structure that:

<patient >    <general>     <name>peter</name>     <dataofbirth>6/nov/2010</ dataofbirth >     <sex>2</sex>   </general>    <medicaldata>     <weight>100</ weight >     <height>170</ height >   </ medicaldata >  </ patient > 

and when can’t access @ data of second tag <medicaldata>.

i'm programing in java , use jdom create xml file.

can me?

thank you.

1.use xstream
2.create class xml data structure
3.obtain collection of objects of class xml
4. use them simply.

here quick start


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -