首页 > 解决方案 > 使用 OWL API 提取本体命名空间/前缀

问题描述

在一个.owl文件中,我声明了一些这样的前缀:

Prefix(:=<http://default.ont/my_ont/>)
Prefix(ex:=<http://example.org/ex#>)
Prefix(ex2:=<http://example2.org/ex#>)
...

并在这样的 Java 项目中使用我的本体:

OWLOntologyManager manager = OWLManager.createOWLOntologyManager();
OWLOntology ontology = manager.loadOntologyFromOntologyDocument(new File(resourceFullPath(ontologyFilename)));

现在我想以Map<String, String>编程方式构建一个具有以下内容的:

{
  ""    -> "http://default.ont/my_ont/",
  "ex"  -> "http://example.org/ex#",
  "ex2" -> "http://example2.org/ex#"
}

我如何使用OWL API来做到这一点(即不.owl自己解析文件)?

标签: javanamespacesontologyprefixowl-api

解决方案


在解析期间找到的前缀作为OWLDocumentFormat与本体关联的实例的一部分保存:

OWLDocumentFormat format = manager.getOntologyFormat(ontology);
if (format.isPrefixOWLDocumentFormat()) {
    // this is the map you need
    Map<String, String> map = format.asPrefixOWLDocumentFormat().getPrefixName2PrefixMap();
}

推荐阅读