How do I parse and save all the classes with their properties from an RDF file using Jena API in Java? -
i have project need parse rdf file , record data on have search specific data afterwards. searched web , find how query said rdf file want parse , save classes in objects. this how class looks in file: <bfo rdf:about="bfo:0000007"> <rdfs:label>process</rdfs:label> <definition> <rdf:description> <def>a process entity exists in time occurring or happening, has temporal parts , involves , depends on entity during time occurs.</def> </rdf:description> </definition> <is_a rdf:resource="efo:0000001"/> </bfo> update: yea u said worked, thank 1 last question:) namespaces have are: <?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="http://www.ebi.ac.uk/efo/"> </rdf...