在 Java 中使用 SPARQL 查找人的位置
我从以下位置获得本体: http://webmind.dico.unimi.it/care /locont-2.0.owl。它包含位置、人员、活动等。
我想通过Java中的SPARQL查询找到人员的位置。 这个查询的结果应该是这样的:
("Ali" is located in "Kitchen")
有人能帮我解决这个查询吗?
I get an ontology from: http://webmind.dico.unimi.it/care/locont-2.0.owl. It contains location, person, activity, etc.
I want to find the location of person by SPARQL querying in Java.
The result of this query should be something like this:
("Ali" is located in "Kitchen")
Could someone help me with this query?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我突然想到,你需要像 SELECT { "Ali" ?p ?o } 这样的东西。然后您必须将 ?p 限制为与位置有关的关系。
以下是一些示例的链接;我希望你会发现它很有用。
Off the top of my head, you'll need something like SELECT { "Ali" ?p ?o }. Then you'll have to restrict ?p to relationships that concern location.
Here is a link to some examples; I hope you will find it useful.