Java Code Examples for org.eclipse.rdf4j.rio.RDFParser#setVerifyData()
The following examples show how to use
org.eclipse.rdf4j.rio.RDFParser#setVerifyData() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SPARQLComplianceTest.java From rdf4j with BSD 3-Clause "New" or "Revised" License | 5 votes |
protected void upload(IRI graphURI, Resource context) throws Exception { RepositoryConnection con = getDataRepository().getConnection(); try { con.begin(); RDFFormat rdfFormat = Rio.getParserFormatForFileName(graphURI.toString()).orElse(RDFFormat.TURTLE); RDFParser rdfParser = Rio.createParser(rdfFormat, getDataRepository().getValueFactory()); rdfParser.setVerifyData(false); rdfParser.setDatatypeHandling(DatatypeHandling.IGNORE); // rdfParser.setPreserveBNodeIDs(true); RDFInserter rdfInserter = new RDFInserter(con); rdfInserter.enforceContext(context); rdfParser.setRDFHandler(rdfInserter); URL graphURL = new URL(graphURI.toString()); InputStream in = graphURL.openStream(); try { rdfParser.parse(in, graphURI.toString()); } finally { in.close(); } con.commit(); } catch (Exception e) { if (con.isActive()) { con.rollback(); } throw e; } finally { con.close(); } }
Example 2
Source File: SPARQLQueryTest.java From rdf4j with BSD 3-Clause "New" or "Revised" License | 5 votes |
private void upload(IRI graphURI, Resource context) throws Exception { RepositoryConnection con = dataRep.getConnection(); try { con.begin(); RDFFormat rdfFormat = Rio.getParserFormatForFileName(graphURI.toString()).orElse(RDFFormat.TURTLE); RDFParser rdfParser = Rio.createParser(rdfFormat, dataRep.getValueFactory()); rdfParser.setVerifyData(false); rdfParser.setDatatypeHandling(DatatypeHandling.IGNORE); // rdfParser.setPreserveBNodeIDs(true); RDFInserter rdfInserter = new RDFInserter(con); rdfInserter.enforceContext(context); rdfParser.setRDFHandler(rdfInserter); URL graphURL = new URL(graphURI.toString()); InputStream in = graphURL.openStream(); try { rdfParser.parse(in, graphURI.toString()); } finally { in.close(); } con.commit(); } catch (Exception e) { if (con.isActive()) { con.rollback(); } throw e; } finally { con.close(); } }
Example 3
Source File: JSONParserTest.java From Halyard with Apache License 2.0 | 5 votes |
@Test public void testMethodsThatDoNothing() { RDFParser p = new JSONParser(); p.setVerifyData(true); p.setPreserveBNodeIDs(true); p.setStopAtFirstError(true); p.setDatatypeHandling(RDFParser.DatatypeHandling.NORMALIZE); p.setParseErrorListener(null); p.setParseLocationListener(null); }