我使用Protege生成了OWL本體。我想使用我的OWL本體,並使用Jena創建RDF三元組以保存在三重商店中。創建owl本體類的實例並將它們保存在rdf商店
我知道如何讀寫RDF,但我不知道如何爲這些OWL類創建實例。例如:
樣品OWL本體我需要
<owl:Class rdf:about="Person"/>
<owl:Class rdf:about="Animal"/>
<owl:DatatypeProperty rdf:about="salary">
<rdfs:domain rdf:resource="Person"/>
<rdfs:range rdf:resource="&xsd;real"/>
</owl:DatatypeProperty>
RDF是類似的東西
<Person rdf:about="Jack">
<salary>1234</salary>
</Person>
謝謝,但這只是intances,如何使用這些不使用這些實例創建rdf三元組。 –