OWL到JSON转换器

时间:2014-12-18 17:29:53

标签: json taxonomy owl ontology

我需要将此OWL本体文件转换为JSON,以便将其集成到HTML5网页中进行可视化:

this is the OWL ontology file in question

2 个答案:

答案 0 :(得分:2)

我使用WebVOWL的工具,http://vowl.visualdataweb.org/webvowl/owl2vowl_0.1.4.zip,效果很好。

命令为java -jar owl2vowl.jar -file yourfile.owl

问候。

答案 1 :(得分:0)

OWL API版本4.0.1可以保存两种JSON变体:RDFJsonDocumentFormatRDFJsonLDDocumentFormat

任何一个人都可以做你想要的。为了使用它们,需要将它们指定为OWLOntologyManager::save()的参数。

可以使用https://github.com/owlcs/owlapi/wiki/Documentation

的示例