如何使用 Java 将 RDF 文件上传到 Virtuoso
我正在开发一种从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以按照任何 JDBC 驱动程序使用 Virtuoso JDBC 驱动程序:
http://virtuoso。 openlinksw.com/dataspace/dav/wiki/Main/VOSClient
http://docs.openlinksw.com/virtuoso/VirtuosoDriverJDBC.html
SPARQL 查询字符串需要以“SPARQL”为前缀
然后您应该使用 SPARQL 更新中的 LOAD 表达式,即:
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:
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.