use of org.eclipse.rdf4j.rio.turtle.TurtleWriter in project rdf4j by eclipse.
the class TurtleHandlingTest method writeTurtle.
/**
* Helper method to write the given model to Turtle and return an InputStream containing the results.
*
* @param statements
* @return An {@link InputStream} containing the results.
* @throws RDFHandlerException
*/
private InputStream writeTurtle(Model statements) throws RDFHandlerException {
StringWriter writer = new StringWriter();
RDFWriter turtleWriter = new TurtleWriter(writer);
turtleWriter.startRDF();
for (Statement nextStatement : statements) {
turtleWriter.handleStatement(nextStatement);
}
turtleWriter.endRDF();
return new ByteArrayInputStream(writer.toString().getBytes(Charset.forName("UTF-8")));
}
Aggregations