2016-10-17 12 views
0

私はSparqlエンドポイントにRDF/OWLファイルをアップロードしようとしていました(Fusekiから提供されました)。今、私は1つのファイルをアップロードすることができますが、私はアクションを繰り返そうとすると、新しいデータセットは古いものを上書きします。私は、アップロードされたばかりのrdfファイルの新しいものと、データセットのデータの内容を「マージ」する方法を探しています。誰でも私を助けることができますか?ありがとう。代わりにputModel(m)のコードのエンドポイントを照会/アップロードする(私は著者ではないよ)Jena Fuseki API既存のデータセットに新しいデータを追加する[java]

// Written in 2015 by Thilo Planz 
// To the extent possible under law, I have dedicated all copyright and related and neighboring rights 
// to this software to the public domain worldwide. This software is distributed without any warranty. 
// http://creativecommons.org/publicdomain/zero/1.0/ 

import java.io.File; 
import java.io.FileInputStream; 
import java.io.IOException; 
import java.io.ByteArrayOutputStream; 

import org.apache.jena.query.DatasetAccessor; 
import org.apache.jena.query.DatasetAccessorFactory; 
import org.apache.jena.query.QueryExecution; 
import org.apache.jena.query.QueryExecutionFactory; 
import org.apache.jena.query.QuerySolution; 
import org.apache.jena.query.ResultSet; 
import org.apache.jena.query.ResultSetFormatter; 
import org.apache.jena.rdf.model.Model; 
import org.apache.jena.rdf.model.ModelFactory; 
import org.apache.jena.rdf.model.RDFNode; 


class FusekiExample { 

    public static void uploadRDF(File rdf, String serviceURI) 
      throws IOException { 

     // parse the file 
     Model m = ModelFactory.createDefaultModel(); 
     try (FileInputStream in = new FileInputStream(rdf)) { 
      m.read(in, null, "RDF/XML"); 
     } 

     // upload the resulting model 
     DatasetAccessor accessor = DatasetAccessorFactory.createHTTP(serviceURI); 
     accessor.putModel(m); 

    } 

    public static void execSelectAndPrint(String serviceURI, String query) { 
     QueryExecution q = QueryExecutionFactory.sparqlService(serviceURI, 
       query); 
     ResultSet results = q.execSelect(); 

     // write to a ByteArrayOutputStream 
     ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); 
     //convert to JSON format 
     ResultSetFormatter.outputAsJSON(outputStream, results); 
     //turn json to string 
     String json = new String(outputStream.toByteArray()); 
     //print json string 
     System.out.println(json); 

    } 

    public static void execSelectAndProcess(String serviceURI, String query) { 
     QueryExecution q = QueryExecutionFactory.sparqlService(serviceURI, 
       query); 
     ResultSet results = q.execSelect(); 

     while (results.hasNext()) { 
      QuerySolution soln = results.nextSolution(); 
      // assumes that you have an "?x" in your query 
      RDFNode x = soln.get("x"); 
      System.out.println(x); 
     } 
    } 

    public static void main(String argv[]) throws IOException { 
     // uploadRDF(new File("test.rdf"),); 

     uploadRDF(new File("test.rdf"), "http://localhost:3030/MyEndpoint/data"); 


    } 
} 

答えて

3

使用accessor.add(m)

the Javadocのように、の代わりにputModelが使用されています。

関連する問題