如何使用ARQ(Jena的SPARQL处理器)将OntModel实例插入到Triple Store(如TDB)中?我有以下代码,它只是创建书籍,并将这些书籍添加到OntModel.现在我想将其插入到TripleStore:
public static void createDummyBooks(){
// Create an empty ontology model
OntModel ontModel = ModelFactory.createOntologyModel();
String ns = new String("http://www.iexample.com/book#");
String baseURI = new String("http://www.iexample.com/book");
Ontology onto = ontModel.createOntology(baseURI);
//creating a book
OntClass book = ontModel.createClass(ns + "Book");
OntClass nonFinctionBook = ontModel.createClass(ns + "NonFictionBook");
OntClass fictionBook = ontModel.createClass(ns + "FictionBook");
// Create datatype property 'hasAge'
DatatypeProperty hasTtitle = ontModel.createDatatypeProperty(ns + "hasTitle");
// 'hasAge' takes integer values, so its range is 'integer'
// Basic datatypes are defined in the ‘vocabulary’ package
hasTtitle.setDomain(book);
hasTtitle.setRange(XSD.xstring); // com.hp.hpl.jena.vocabulary.XSD
// Create individuals
Individual theProgrammingBook = nonFinctionBook.createIndividual(ns + "ProgrammingBook");
Individual theFantasyBook = fictionBook.createIndividual(ns + "FantasyBook");
Literal bookTitle = ontModel.createTypedLiteral("Programming with Ishmael", XSDDatatype.XSDstring);
Literal fantasyBookTitle = ontModel.createTypedLiteral("The adventures of Ishmael", XSDDatatype.XSDstring);
// Create statement 'ProgrammingBook hasTitle "Programming with Ishmael" '
Statement theProgrammingBookHasTitle = ontModel.createStatement(nonFinctionBook, hasTtitle, bookTitle);
// Create statement 'FantasyBook hasTitle "The adventures of Ishmael" '
Statement theFantasyBookHasTitle = ontModel.createStatement(theFantasyBook, hasTtitle, fantasyBookTitle);
List<Statement> statements = new ArrayList<Statement>();
statements.add(theProgrammingBookHasTitle);
statements.add(theFantasyBookHasTitle);
ontModel.add(statements);
//just displaying here - but how do I now write/insert this into my Triple Store/TDB using AQR API?
ontModel.write(System.out, "RDF/XML-ABBREV");
}
有什么想法吗?非常感谢。
经过一些搜索和API。我看到了这个非常有用的教程-尽管它有一个特定的重点,但它确实让我对我需要做什么有了一些好的想法。因此,这就是我最终如何使用HTTP数据集访问器DatasetAccessor
将我的OntModel
插入/添加到Fuseki Server上现有的dataset
中。
//The Graph Store protocol for sem_tutorials (my dummy dataset) is http://localhost:3030/sem_tutorials/data
private static final String FUSEKI_SERVICE_DATASETS_URI = "http://localhost:3030/sem_tutorials/data";
private void testSavingModel(OntModel model){
DatasetAccessor accessor = DatasetAccessorFactory.createHTTP(FUSEKI_SERVICE_DATASETS_URI);
if(accessor != null){
//because I already had a number of Triples there already - I am only adding this model
accessor.add(model);
}
}
就这么简单!因此,当我通过运行SPARQL查询select * {?s ?p ?o}
进行检查时,数据就在那里!我希望这对那些使用Jena开发语义Web应用程序的人也有用。
这里提供的教程非常棒,最后展示了如何通过http将OntModel转移到Fuseki中。以下是一个如何在嵌入式Fuseki 3.4.0中执行相同操作以确保完整性的示例:
// this will represent content of the db
Dataset ds = DatasetFactory.createTxnMem();
DatasetGraph dsg = ds.asDatasetGraph();
// here some Jena Objects to be inserted
String NS = "http://myexample.com/#"
OntModel m = ModelFactory.createOntologyModel();
OntClass r = m.createClass( NS + Request.class.getName() );
Individual i = r.createIndividual( NS + request.hashCode() );
FusekiServer server = FusekiServer.create()
.setPort(4321)
.add("/ds", ds)
.build();
server.start();
DatasetAccessor accessor = DatasetAccessorFactory.create(ds);
//upload Jena Model into Fuseki
Txn.executeWrite(dsg, () -> {
accessor.add(m);
TDB.sync(dsg);
dsg.commit();
});
//query content of Fuseki
Txn.executeWrite(dsg, () -> {
Quad q = SSE.parseQuad("(_ :s :p _:b)");
dsg.add(q);
});
与http数据集一样,这里的关键是访问器。如果你知道如何优化我提出的这个例子,请评论!
如果您了解更多关于Jena API示例的来源<->嵌入式Fuseki也请在这里添加!