在 Java 中使用 SPARQL 查找人的位置

发布于 2024-12-02 13:40:28 字数 290 浏览 6 评论 0原文

我从以下位置获得本体: 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溇涏 2024-12-09 13:40:28

我突然想到,你需要像 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文