创建可解析的 URI
我正在使用 Jena、Java 生成 RDF 语句。我想知道生成可解析的 URI 是否需要遵循一些规则。
am using Jena, Java to generate RDF statements. I want to know if there are rules I need to follow to generate resolvable URIs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在谈论现在所谓的链接数据,是的,有您应该遵循的模式。最简单的是,您应该 (i) 使用
http:
URI,(ii) 确保这些 URI 引用您控制的 Web 空间中的位置,以及 (iii) 确保向这些 URI 发送 HTTP GET 请求具有适当 mime 类型的 URI 将产生它们所表示的资源的机器可读表示。I think you're talking about what is now referred to as linked data, and yes, there are patterns you should follow. At its simplest, you should (i) use
http:
URI's, (ii) ensure that those URI's refer to locations in a web space you control, and (iii) ensure that an HTTP GET request to those URI's, with an appropriate mime type, will result in machine-readable representations of the resources they denote.