我有一个本体,我使用 OWL API 导入另一个本体,
OWLImportsDeclaration importDeclaraton = Factory.getOWLImportsDeclaration(IRI.create("file:/path/to/ontology.owl"));
ontology.getOWLOntologyManager().applyChange(new AddImport(ontology, importDeclaraton));
新本体中包含一些 abox 断言,但是,当我查询本体以获取其 abox 公理时,其中没有任何内容。
System.out.println(ontology.getABoxAxioms(true));
返回 []