use of org.openrdf.rio.rdfxml.RDFXMLWriterFactory in project qi4j-sdk by Qi4j.
the class ApplicationXmlTest method writeXml.
private void writeXml(Iterable<Statement> graph) throws RDFHandlerException, IOException {
RDFWriterFactory writerFactory = new RDFXMLWriterFactory();
RDFWriter writer = writerFactory.getWriter(System.out);
writeOutput(writer, graph);
}
Aggregations