Bonjour,

je souhaiterai parser des fichiers RDF/XML provenant de DBpedia. Ces fichiers ressemblent à cela :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
<?xml version="1.0" encoding="utf-8" ?>
<rdf:RDF
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
	xmlns:owl="http://www.w3.org/2002/07/owl#"
	xmlns:dbpedia-owl="http://dbpedia.org/ontology/"
	xmlns:foaf="http://xmlns.com/foaf/0.1/"
	xmlns:dbpprop="http://dbpedia.org/property/"
	xmlns:dcterms="http://purl.org/dc/terms/"
	xmlns:wdrs="http://www.w3.org/2007/05/powder-s#"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:ns9="http://dbpedia.org/property/jr/"
	xmlns:ns10="http://www.w3.org/ns/prov#" >
  <rdf:Description rdf:about="http://dbpedia.org/resource/Steven_Chu">
    <dbpprop:president rdf:resource="http://dbpedia.org/resource/Barack_Obama" />
    <dbpedia-owl:president rdf:resource="http://dbpedia.org/resource/Barack_Obama" />
  </rdf:Description>
<dbpprop:placeOfBirth xml:lang="en">Honolulu, Hawaii, United States</dbpprop:placeOfBirth>
<!-- -->
</rdf>
est-il possible de le faire avec une le DOM ou pas ?
si oui comment faire ?
si non quelle bibliotheque me conseillez vous ?


merci