Using jena for creating RDF from XMl file [closed]

\[quote\] Possible Duplicate:
create RDF from XML \[/quote\]I am sorry for asking this question for the second time, I am still still having problem in generating rdf from the following xml file. \[code\]<xml><person><name>Joe</name><website url="www.example1.com">contact1</website ><vote>20</vote></person><person> <name>Anna</name><website url="www.example2.com">contact2</website> <vote>80</vote> </person> </xml>\[/code\]I think using jena might solve the issue , but I am not sure how to do so, since each has got three properties and I would like the out put to look like the following \[code\]<rdf:Description rdf:about="http://www.example.com/xml"> <j.0:hasCritic>Joe</j.0:hasCritic> <rdf:Description rdf:about=Joe > <j.0:haswebsite>"www.example1.com"</j.0:haswebsite> <j.0:hascontact>contact1</j.0:hascontact> <j.0:hasvote>80</j.0:hasvote> </rdf:Description><j.0:hasCritic>Anna</j.0:hasCritic> <rdf:Description rdf:about=Anna> <j.0:haswebsite>"www.example2.com"</j.0:haswebsite> <j.0:hascontact>contact2</j.0:hascontact> <j.0:hasvote>20</j.0:hasvote>\[/code\]Thanks in advance for any help
 
Back
Top