I have several book's reference be must convert to XML.
I want to create application in Java for this action.
Book's reference:
Schulz V, Hansel R, Tyler VE. Rational phytotherapy: a physician's guide to herbal
medicine. 3rd ed., fully rev. and expand. Berlin: Springer; c1998. 306 p.
XML:
<element-citation publication-type="book" publication-format="print">
<name>
<surname>Schulz</surname>
<given-names>V</given-names>
</name>
<name>
<surname>Hansel</surname>
<given-names>R</given-names>
</name>
<name>
<surname>Tyler</surname>
<given-names>VE</given-names>
</name>
<source>Rational phytotherapy: a physician's guide to herbal medicine</source>
<edition>3rd ed., fully rev. and expand</edition>
<publisher-loc>Berlin</publisher-loc>
<publisher-name>Springer</publisher-name>
<year>c1998</year>
<size units="page">306 p</size>
</element-citation>
How to convert book's reference to XML format?
What do you suggest?