* @throws java.io.IOException
*/
public void saveRepositoryAsN3(String output_file_path) throws RepositoryException, RDFHandlerException, IOException {
FileWriter outFile = new FileWriter(output_file_path);
//PrintWriter out = new PrintWriter(outFile);
RDFHandler n3Writer = new N3Writer(outFile);
con.export(n3Writer);
outFile.close();
}