如何使用 Java 将 RDF 文件上传到 Virtuoso

发布于 2025-01-05 01:31:23 字数 191 浏览 1 评论 0原文

我正在开发一种从 url 检索 rdf 文件的自动方法,然后将它们填充到我的(远程)virtuoso 商店。 目前,我正在使用 Jena 库和 Virtuoso Jena Provider 来执行此操作,特别是我使用模型创建 VirtGraph,然后读取该模型中的 rdf 文件。 有什么方法可以绕过使用模型来读取 rdf 文件并使用 java 将其直接上传到商店吗?

I am developing an automatic method of retrieving rdf files from a url and then populating them to my (remote) virtuoso store.
Currently, I am using the Jena libs and the Virtuoso Jena Provider to do that, in particular I create a VirtGraph with a model and then I read the rdf file in this Model.
Is there any way I can bypass using a model to read the rdf file and upload it directly to the store, using java?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

各自安好 2025-01-12 01:31:23

您可以按照任何 JDBC 驱动程序使用 Virtuoso JDBC 驱动程序:

http://virtuoso。 openlinksw.com/dataspace/dav/wiki/Main/VOSClient
http://docs.openlinksw.com/virtuoso/VirtuosoDriverJDBC.html

SPARQL 查询字符串需要以“SPARQL”为前缀

然后您应该使用 SPARQL 更新中的 LOAD 表达式,即:

SPARQL
LOAD <http://uri-of-rdf-resource>
INTO GRAPH <http://uri-of-target-graph>

RDF 资源需要可取消引用才能工作

或者,您可以使用符合 SPARQL 协议的 jdbc 驱动程序,在 Virtuoso SPARQL 端点上运行 http://code.google.com/p /jdbc4sparql/ 如果您想避免非标准查询字符串前缀。

You can use the Virtuoso JDBC driver as per any JDBC driver:

http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/VOSClient
http://docs.openlinksw.com/virtuoso/VirtuosoDriverJDBC.html

The SPARQL query string needs to be prefixed with "SPARQL"

You should then use the LOAD expresssion from SPARQL Update i.e:

SPARQL
LOAD <http://uri-of-rdf-resource>
INTO GRAPH <http://uri-of-target-graph>

The RDF resource needs to be dereferenceable for this to work

Alternatively, you can use a SPARQL Protocol compliant jdbc driver, operating on the Virtuoso SPARQL endpoint http://code.google.com/p/jdbc4sparql/ if you want to avoid the non-standard querystring prefix.

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