2014-08-27 82 views
0

我對返回單個結果的Jena模型有SPARQL查詢。我如何訪問該結果,因爲我無法迭代,因爲只有一個元素?我嘗試了2個選項,但都失敗了。我使用ResultSetFormatter將結果轉換爲JSONObject,但我發現這些鍵不是我的變量。此外,我試圖使用toList()方法將其轉換爲QuerySolution列表,但它返回空列表。任何幫助?如何從Jena SPAQL結果集中獲取第一個元素

public void insertMedcationContext(JSONObject medcontext) { 

    connection.getDataset().begin(ReadWrite.WRITE); 
    Model model = connection.getDataset().getDefaultModel(); 

    String medActivityQuery = "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>\n" 
      + "PREFIX fn: <http://www.w3.org/2005/xpath-functions#>\n" 
      + "PREFIX medication:<http://www.cs.kaist.ac.kr/medication/ontology#>\n" 
      + "PREFIX resource:<http://www.cs.kaist.ac.kr/medication/resource#>\n" 
      + "PREFIX time:<http://www.w3.org/2006/time#>\n" 
      + "SELECT ?activity ((?deschour - ?timestamp) AS ?gap) (fn:abs(?gap)AS ?gapabsolute)\n" 
      + "WHERE\n" 
      + "{?activity rdf:type medication:MedicationActivity .\n"    
      + "?activity medication:belongsTo ?schedule .\n" 
      + "?activity medication:expectedTime ?time .\n" 
      + "?time time:hasTimeDescription ?desc .\n" 
      + "?desc time:year ?descyear .\n" 
      + "?desc time:month ?descmonth .\n" 
      + "?desc time:day ?descdate .\n" 
      + "?desc time:hour ?deschour .\n" 
      + "}\n" 
      + "ORDER BY (?gapabsolute)\n" 
      + "LIMIT 1";    

    try { 
     Resource schedule = model.createResource(
       nameSpace + medcontext.getString("schedule"), 
       MEDICATION.Schedule); 
     Resource scheduleResource = model.getResource(schedule.getURI()); 

     ParameterizedSparqlString parameterizedQuery = new ParameterizedSparqlString(
       medActivityQuery); 
     parameterizedQuery.setParam("schedule", scheduleResource); 

     JSONObject timestamp = new JSONObject(); 
     timestamp = medcontext.getJSONObject("exacttime"); 
     parameterizedQuery.setLiteral("descyear",Integer.toString(timestamp.getInt("year")),XSDDatatype.XSDgYear); 
     parameterizedQuery.setLiteral("descmonth",Integer.toString(timestamp.getInt("month")),XSDDatatype.XSDgMonth); 
     parameterizedQuery.setLiteral("descdate",Integer.toString(timestamp.getInt("date")),XSDDatatype.XSDgDay); 
     parameterizedQuery.setLiteral("timestamp",Integer.toString(timestamp.getInt("hour")),XSDDatatype.XSDnonNegativeInteger); 

     Query query = QueryFactory.create(parameterizedQuery.toString()); 
     QueryExecution qe = QueryExecutionFactory.create(query, model); 

     try { 
      ResultSet result = qe.execSelect(); 
      String text = ResultSetFormatter.asText(result); 
      System.out.println(text); 

      ByteArrayOutputStream b = new ByteArrayOutputStream(); 
      ResultSetFormatter.outputAsJSON(b, result); 
      JSONObject jsonResult = new JSONObject (b.toString()); 

      System.out.print(jsonResult); 

      List <QuerySolution> resultList = ResultSetFormatter.toList(result);     

      // Get the right medication activity from the model for which context is incoming 
       Resource rightActivity = null; 

       QuerySolution row = resultList.get(0); 
       rightActivity = row.getResource("activity"); 
       System.out.print(rightActivity.toString()); 

resultList是空的。有一個結果......

回答

3

ResultSets已默認情況下,生產上的需求。你只能遍歷它們一次,然後結果被消耗。你做

ResultSet result = qe.execSelect(); 
String text = ResultSetFormatter.asText(result); 

後,你可能無法從做

ResultSetFormatter.outputAsJSON(b, result); 

ResultSetFormatter.toList(result); 

反而得到任何結果,您應該複製與ResultSet中,例如,

ResultSet results = ResultSetFactory.copyResults(qe.execSelect()); 
+1

如果這是重複的,我不會感到驚訝一些現有的問題和答案,但經過一番搜索,我沒有找到一個。 – 2014-08-27 19:02:05

相關問題