如何添加耶拿语词汇?
在耶拿有一些默认的本体,如 RDF、FOAF...
因此我们可以向资源添加属性,例如:
resource.addProperty(FOAF.name, person.getMFirstName());
但我需要耶拿中不存在的另一个本体,如 SIOC、pimo,我有 URI。
我该怎么做?
In Jena there are some default ontologies like RDF, FOAF...
So we can add property to resource like:
resource.addProperty(FOAF.name, person.getMFirstName());
But I need another ontology that does not exist in Jena like SIOC, pimo that I have the URI for.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Jena 有一个工具用于生成包含本体和 RDF 模式常量的 Java 类:schemagen
Jena has a tool for generating Java classes that contain the constants from ontologies and RDF schemas: schemagen