使用 JENA API - 从 OWL 文件获取所有类
是否可以使用 JENA 获取 OWL 文件中存在的所有类的名称并将其存储在数组列表中?
OntModel base = ModelFactory.createOntologyModel(OntModelSpec.OWL_MEM, null);
OntModel model = ModelFactory.createOntologyModel(OntModelSpec.OWL_MEM_MICRO_RULE_INF, null);
String NS = "http://www.abc.com/abcportal/abc.owl" + "#";
base.read("file:abcInstance.owl");
ExtendedIterator<OntClass> iter = base.listClasses();
while ( iter.hasNext()){
System.out.println(iter.next());
}
Is it possible to get name of all the classes present in OWL file using JENA and store in the Array List?
OntModel base = ModelFactory.createOntologyModel(OntModelSpec.OWL_MEM, null);
OntModel model = ModelFactory.createOntologyModel(OntModelSpec.OWL_MEM_MICRO_RULE_INF, null);
String NS = "http://www.abc.com/abcportal/abc.owl" + "#";
base.read("file:abcInstance.owl");
ExtendedIterator<OntClass> iter = base.listClasses();
while ( iter.hasNext()){
System.out.println(iter.next());
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,请参阅 Javadoc OntModel.listClasses。您可以轻松地将
Iterator
的内容复制到数组或List
中。您提出的问题表明您可能会从阅读 Jena 本体 API 文档Yes it is, see the Javadoc for OntModel.listClasses. You can easily copy the contents of the
Iterator
into an array orList
. That you're asking the question suggests that you'll probably benefit from reading the Jena ontology API documentation