如何以编程方式使用 DL 查询
我想知道是否可以在 Protege 中以编程方式使用 DL Query。是否可以在 Java 中输入查询并像在 SQL 中那样检索个人?
例如,查询是 hasCalorificContentValue value 723
,我想检索一个名为 QuattroFormaggio
的个人。
I would like to know whether I can use DL Query in Protege programatically. Is it possible to enter a query in Java and retrieve individuals like how it is done in SQL?
E.g. query is hasCalorificContentValue value 723
and I would like to retrieve an individual called QuattroFormaggio
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有 OWL 文件,那么您可以使用 OWLAPI 以编程方式访问、编辑和查询您的本体,而无需使用Protege。在 OWLAPI 示例页面上有一些代码示例,描述了如何对您的询问。
If you have an OWL file then you can use the OWLAPI to programatically access, edit and query your ontology without having to use Protege. On the OWLAPI examples page there are code examples that describe how you would encode your query.