How to get nested RDF/XML from Jena?
I need to create RDF that looks like this: <rdf:Description rdf:about='uri1'> <namespace:level1> <rdf:Description> <namespace:blankNode rdf:resource='uri2'/> <namespace:text></namespace:text> </rdf:Description> </namespace:level1> </rdf:Description> <rdf:Description rdf:about="uri2"> some properties here </rdf:Description> As you can see, there are nested structures, as well as blank nodes. (I don't know if that's the exact terminology for the "blankNode" property in my structure.) If I use model.write(System.out, "RDF/XML-ABBREV"); then even the blank node is nested, which I don't want. Is