Package org.apache.jena.riot.lang

Examples of org.apache.jena.riot.lang.SinkTriplesToGraph


public class ExampleRIOT_03 {

    public static void main(String[] args) {
        InputStream in = Utils.getResourceAsStream("data/data.ttl");
        Graph graph = Factory.createGraphMem();
        RiotReader.parseTriples(in, Lang.TURTLE, null, new SinkTriplesToGraph(graph));
        RiotWriter.writeTriples(System.out, graph);
    }
View Full Code Here

TOP

Related Classes of org.apache.jena.riot.lang.SinkTriplesToGraph

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.