gpt4 book ai didi

java - 将年龄(整数文字)添加到 Jena RDF 三元组,并使用 SPARQL 对其进行查询

转载 作者:行者123 更新时间:2023-12-02 05:42:09 25 4
gpt4 key购买 nike

我正在尝试学习使用 Jena 和 RDF Triples 的基础知识。还使用 Oracle 数据库,因此按照他们的指南,我运行了一些示例程序,例如 Example7-18 SPARQL OPTIONAL Query 。该示例按照编写的方式运行良好。它允许匹配查询,例如

where {?s <u:parentOf> ?o}

where {<u:John> <u:parentOf> <u:Mary>}

我想做的是给约翰、玛丽和吉尔各一个年龄,以便我可以按照 SPARQL By Example: The Cheat Sheet 中所述查询和过滤年龄。 ,第 10 页:

A . B . FILTER ( …expr… )

where {?s <u:parentOf> ?o . ?o <u:isAge> ?a . filter ( ?a < 20 ) }

使用当前的三元组代码,我只能添加字符串/URI 节点,尽管我可以创建一个三元组,例如 <u:John> <u:isAge> <u:35> ,我无法过滤并与该年龄的 < 运算符进行比较,因此它不是很有用。

我已经四处寻找了一段时间,我怀疑这样做非常简单,但代码示例很难找到。

最佳答案

请注意,您需要一个类似 "35"^^xsd:int 的对象或"35^^xsd:integer ,它们是文字,而不是 <u:35>这是一个(可能格式错误的)URI。在我看来,这个例子以一种不寻常的方式做事,并且根据文档,它使用了一些已弃用的方法。无论如何,您可以看到它使用 Node 中的方法创建 URI 节点。类(工厂类):

Node.createURI("u:John")
Node.createURI("u:parentOf")
Node.createURI("u:Mary")

Node 类中有五个 createLiteral 方法,您可以使用 createLiteral(String lex, RDFDatatype dtype)创建具有数据类型的文字。不过,该方法已被弃用,您确实应该使用 NodeFactory 中的方法之一相反。

尽管如此,我不知道该示例使用图形接口(interface)而不是模型接口(interface)来创建三元组是否有任何原因。您已经从以下位置获得了模型:

ModelOracleSem model = ModelOracleSem.createOracleSemModel(oracle, szModelName);

如果您使用Model,此任务会更容易完成接口(interface),其中有类似 createTypedLiteral 的方法这样您就可以简单地调用createTypedLiteral(30)并返回一个合适的文字。这是一个例子:

import java.math.BigInteger;

import com.hp.hpl.jena.query.Query;
import com.hp.hpl.jena.query.QueryExecution;
import com.hp.hpl.jena.query.QueryExecutionFactory;
import com.hp.hpl.jena.query.QueryFactory;
import com.hp.hpl.jena.query.ResultSetFormatter;
import com.hp.hpl.jena.rdf.model.Model;
import com.hp.hpl.jena.rdf.model.ModelFactory;
import com.hp.hpl.jena.rdf.model.Property;
import com.hp.hpl.jena.rdf.model.Resource;

public class CreateAndQueryExample {

/**
* @param args
*/
public static void main(String[] args) {
// You should be able to replace this with the Oracle model
// producing code.
Model model = ModelFactory.createDefaultModel();

Resource john = model.createResource( "urn:ex:John" );
Resource mary = model.createResource( "urn:ex:Mary" );
Property age = model.createProperty( "urn:ex:age" );

// Using Model.add method
model.add( john, age, model.createTypedLiteral( new BigInteger( "25" ))); // "25"^^xsd:integer
// model.add( john, age, model.createTypedLiteral( 25 )); // "25"^^xsd:int
// model.add( john, age, model.createTypedLiteral( 25l )); // "25"^^xsd:long

// Using the Resource.addProperty method
mary.addProperty( age, model.createTypedLiteral( new BigInteger( "35" )));

Query query = QueryFactory.create( "select * where { ?s <urn:ex:age> ?age . filter ( ?age < 30 ) }" );
QueryExecution exec = QueryExecutionFactory.create( query, model );
ResultSetFormatter.out( exec.execSelect() );
}
}
-----------------------
| s | age |
=======================
| <urn:ex:John> | 25 |
-----------------------

关于java - 将年龄(整数文字)添加到 Jena RDF 三元组,并使用 SPARQL 对其进行查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24426559/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com