gpt4 book ai didi

java - openrdf 芝麻模型中的多个过滤器

转载 作者:行者123 更新时间:2023-11-30 07:40:06 26 4
gpt4 key购买 nike

我想过滤一个模型,获取所有具有特定谓词和 C 类型主语的三元组。下面的代码不返回任何结果,有人知道如何实现它吗?

return triples.filter(null,  new URIImpl(property.getFullIRI()), null).filter
(null, RDF.TYPE,new URIImpl(C.getFullIRI()));

最佳答案

问题是您正在对第一个过滤器的结果应用第二个过滤器 - 但第一个过滤器的结果包含具有您所使用的属性的三元组已过滤 - 因此第二个过滤器只能返回空结果(因为中间结果中没有三元组具有 rdf:type 谓词)。

由于您以这种方式表达“非顺序”的次要约束,因此您无法仅通过过滤来解决此问题。您将需要构建一个新的模型并在进行过程中填充数据。大致如下:

 // always use a ValueFactory, avoid instantiating URIImpl directly.
ValueFactory vf = ValueFactoryImpl().getInstance();
URI c = vf.createURI(C.getFullIRI());
URI prop = vf.createURI(property.getFullIRI())

// create a new Model for the resulting triple collection
Model result = new LinkedHashModel();

// filter on the supplied property
Model propMatches = triples.filter(null, prop, null);
for(Resource subject: propMatches.subjects()) {

// check if the selected subject is of the supplied type
if (triples.contains(subject, RDF.TYPE, c)) {
// add the type triple to the result
result.add(subject, RDF.TYPE, c);

// add the property triple(s) to the result
result.addAll(propMatches.filter(subject, null, null));
}
}
return result;

以上内容适用于 Sesame 2。如果您使用 Sesame 4(支持 Java 8 及其 Stream API),您可以更轻松地执行此操作,如下所示:

return triples.stream().filter(st -> 
{
if (prop.equals(st.getPredicate()) {
// add this triple if its subject has the correct type
return triples.contains(st.getSubject(), RDF.TYPE, c));
} else if (RDF.TYPE.equals(st.getPredicate())
&& c.equals(st.getObject()) {
// add this triple if its subject has the correct prop
return triples.contains(st.getSubject(), prop, null);
}
return false;
}).collect(Collectors.toCollection(LinkedHashModel::new));

关于java - openrdf 芝麻模型中的多个过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34820081/

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