4

次のように定義されたオブジェクト制限があります

hasYear some integer[minLength 2, maxLength 4, >=1995, <=2012]

Jenaを使用して、制限で定義された個々の値を読み取るにはどうすればよいですか。

4

1 に答える 1

4

さまざまなアプローチを使用できます。まずModel、次のコードでイエナをトラバースできます。

model.read(...);
StmtIterator si = model.listStatements(
        model.getResource("required property uri"), RDFS.range, (RDFNode) null);
while (si.hasNext()) {
    Statement stmt = si.next();
    Resource range = stmt.getObject().asResource();
    // get restrictions collection
    Resource nextNode = range.getPropertyResourceValue(OWL2.withRestrictions);
    for (;;) {
        Resource restr = nextNode.getPropertyResourceValue(RDF.first);
        if (restr == null)
            break;

        StmtIterator pi = restr.listProperties();
        while (pi.hasNext()) {
            Statement restrStmt = pi.next();
            Property restrType = restrStmt.getPredicate();
            Literal value = restrStmt.getObject().asLiteral();
            // print type and value for each restriction
            System.out.println(restrType + " = " + value);
        }
        // go to the next element of collection
        nextNode = nextNode.getPropertyResourceValue(RDF.rest);
    }
}

OntModelRDFグラフコードの表現を使用する場合は、

model.listRestrictions()
ontClass.asRestriction()
etc.

そのようなアプローチの良い例(Ian Dickinsonに感謝します)

別の方法は、同じ意味でSPARQL1.1クエリを使用することです

PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?datatype ?restr_type ?restr_value {
    ?prop rdfs:range ?range.
    ?range owl:onDatatype ?datatype;
        owl:withRestrictions ?restr_list.
    ?restr_list rdf:rest*/rdf:first ?restr.
    ?restr ?restr_type ?restr_value
}
于 2012-04-26T18:59:29.497 に答える