首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >使用sparql查询创建新的三元组

使用sparql查询创建新的三元组
EN

Stack Overflow用户
提问于 2014-04-03 12:58:17
回答 1查看 434关注 0票数 0

我尝试执行以下java代码,使用SPARQL构造特性创建新的三元组。

代码语言:javascript
复制
package jenasemweb;


 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.QuerySolution;
 import com.hp.hpl.jena.query.ResultSet;
 import com.hp.hpl.jena.rdf.model.InfModel;
 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;
 import com.hp.hpl.jena.rdf.model.Statement;
 import com.hp.hpl.jena.rdf.model.StmtIterator;
 import com.hp.hpl.jena.util.FileManager;
 import com.hp.hpl.jena.util.PrintUtil;

    public class SparqlQuery03 {
 public static void main(String [] args) {

 // LOAD Raw Model from URL
 Model myRawModel =
 FileManager.get().loadModel(
 "http://lyle.smu.edu/~coyle/cse7392.semweb/onto/a3/Houghland.n3", "N3");

 // READ another N3 into the Model
 FileManager.get().readModel(myRawModel,
 "http://lyle.smu.edu/~coyle/cse7392.semweb/onto/a3/cruz.n3", "N3");

 // READ another N3 into the Model
 FileManager.get().readModel(myRawModel,
 "http://lyle.smu.edu/~coyle/cse7392.semweb/onto/a3/abraham.n3", "N3");

 // READ another N3 into the Model
 FileManager.get().readModel(myRawModel,
 "http://lyle.smu.edu/~coyle/cse7392.semweb/onto/a3/akundi.v2.n3", "N3");

 // READ another N3 into the Model
 FileManager.get().readModel(myRawModel,
"http://lyle.smu.edu/~coyle/cse7392.semweb/onto/a3/bennett.n3", "N3");

 // READ another N3 into the Model
FileManager.get().readModel(myRawModel,
 "http://lyle.smu.edu/~coyle/cse7392.semweb/onto/a3/hanna.n3", "N3");

 // READ another N3 into the Model
 FileManager.get().readModel(myRawModel,
 "http://lyle.smu.edu/~coyle/cse7392.semweb/onto/a3/liew_hw2.n3", "N3");

 // READ another N3 into the Model
 FileManager.get().readModel(myRawModel,
 "http://lyle.smu.edu/~coyle/cse7392.semweb/onto/a3/ramani.n3", "N3");

 // READ another N3 into the Model
 FileManager.get().readModel(myRawModel,
 "http://lyle.smu.edu/~coyle/cse7392.semweb/onto/a3/rawal.n3", "N3");

 // READ another N3 into the Model
 FileManager.get().readModel(myRawModel,
 "http://lyle.smu.edu/~coyle/cse7392.semweb/onto/a3/sison.n3", "N3");

 // READ another N3 into the Model
 FileManager.get().readModel(myRawModel,
 "http://lyle.smu.edu/~coyle/cse7392.semweb/onto/a3/tara.n3", "N3");

 // READ another N3 into the Model
 FileManager.get().readModel(myRawModel,
 "http://lyle.smu.edu/~coyle/cse7392.semweb/onto/a3/turney.n3", "N3");

 // READ another N3 into the Model
 FileManager.get().readModel(myRawModel,
 "http://lyle.smu.edu/~coyle/cse7392.semweb/onto/a3/wilson.n3", "N3");

 // Create an RDFS inference model from the Raw Model
 InfModel infmodel = ModelFactory.createRDFSModel(myRawModel);

 // Create a new SPARQL query
 String queryString =
 "PREFIX drc: <http://www.codesupreme.com/onto/cse7392/#> " +
 "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> " +
 "PREFIX foaf: <http://xmlns.com/foaf/0.1/> " +
 "SELECT DISTINCT ?lname ?fname " + // space after last ?var
 "WHERE {" +
 " ?who foaf:lastName ?lname." +
 " ?who foaf:firstName ?fname." +
 " }" +
 "ORDER BY ?lname";

 // create a Jena query from the queryString
 com.hp.hpl.jena.query.Query query = QueryFactory.create(queryString);

 // create a Jena QueryExecution object that knows the query
 // and the N3 over which the query will be run
 QueryExecution qe = QueryExecutionFactory.create(query, infmodel);


 // execute the query - get back a ResultSet
 ResultSet results = qe.execSelect();

 // iterate over the result set
 while(results.hasNext()) {
 QuerySolution sol = results.next();
 System.out.println("Solution:" + sol.toString() );
 }}}

但是执行返回以下错误:

代码语言:javascript
复制
Exception in thread "main" org.apache.jena.riot.RiotException: [line: 119, col: 27] Unrecognized: [DOT]
    at org.apache.jena.riot.system.ErrorHandlerFactory$ErrorHandlerStd.fatal(ErrorHandlerFactory.java:136)
    at org.apache.jena.riot.lang.LangEngine.raiseException(LangEngine.java:163)
    at org.apache.jena.riot.lang.LangEngine.exceptionDirect(LangEngine.java:156)
    at org.apache.jena.riot.lang.LangEngine.exception(LangEngine.java:149)
    at org.apache.jena.riot.lang.LangTurtleBase.triplesNodeCompound(LangTurtleBase.java:408)
    at org.apache.jena.riot.lang.LangTurtleBase.triplesNode(LangTurtleBase.java:388)
    at org.apache.jena.riot.lang.LangTurtleBase.objectList(LangTurtleBase.java:350)
    at org.apache.jena.riot.lang.LangTurtleBase.predicateObjectItem(LangTurtleBase.java:288)
    at org.apache.jena.riot.lang.LangTurtleBase.predicateObjectList(LangTurtleBase.java:269)
    at org.apache.jena.riot.lang.LangTurtleBase.triples(LangTurtleBase.java:250)
    at org.apache.jena.riot.lang.LangTurtleBase.triplesSameSubject(LangTurtleBase.java:191)
    at org.apache.jena.riot.lang.LangTurtle.oneTopLevelElement(LangTurtle.java:44)
    at org.apache.jena.riot.lang.LangTurtleBase.runParser(LangTurtleBase.java:90)
    at org.apache.jena.riot.lang.LangBase.parse(LangBase.java:42)
    at org.apache.jena.riot.RDFParserRegistry$ReaderRIOTFactoryImpl$1.read(RDFParserRegistry.java:142)
    at org.apache.jena.riot.RDFDataMgr.process(RDFDataMgr.java:859)
    at org.apache.jena.riot.RDFDataMgr.parse(RDFDataMgr.java:687)
    at org.apache.jena.riot.RDFDataMgr.read(RDFDataMgr.java:208)
    at org.apache.jena.riot.RDFDataMgr.read(RDFDataMgr.java:141)
    at org.apache.jena.riot.RDFDataMgr.read(RDFDataMgr.java:130)
    at org.apache.jena.riot.adapters.AdapterFileManager.readModelWorker(AdapterFileManager.java:291)
    at com.hp.hpl.jena.util.FileManager.readModel(FileManager.java:369)
    at jenasemweb.SparqlQuery03.main(SparqlQuery03.java:44)

我是新来的,非常新的。所以所有的帮助都是值得感激的。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2014-04-03 13:12:08

此错误与SPARQL查询无关。这是一个解析文件http://lyle.smu.edu/~coyle/cse7392.semweb/onto/a3/hanna.n3的问题(至少在您提供的片段中是在线44 )。

我试着运行这个文件,我在第36行(不是44行)得到了一个异常,即http://lyle.smu.edu/~coyle/cse7392.semweb/onto/a3/akundi.v2.n3

它可能是一个以点结尾的URI的问题,可能是在三元组的对象中。你是否有可能使用耶拿2.11.0或更高版本?

请参阅https://issues.apache.org/jira/browse/JENA-584 ->您可以尝试升级到Jena 2.11.1。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/22838508

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档