AGLoadRDF.java

package com.franz.ag.examples;

import com.franz.ag.*;
import org.openrdf.model.URI;

public class AGLoadRDF {

    /**
     * Demonstrates loading a triple store from files in RDF/XML format.
     * 
     * @param args unused
     * @throws AllegroGraphException
     */
    public static void main(String[] args) throws AllegroGraphException {
        // Connect to server, which must already be running.
        AllegroGraphConnection ags = new AllegroGraphConnection();
        try {
            ags.enable();
        } catch (Exception e) {
            throw new AllegroGraphException("Server connection problem", e);
        }

        // Create a fresh triple store.
        AllegroGraph ts = ags.renew("loadRDF", AGPaths.TRIPLE_STORES);

        // Load a file in RDF/XML format into the store's default graph.
        String rdf = AGPaths.dataSources("rdf-axioms.rdf");
        System.out.println("Loading RDF from " + rdf);
        Long n = ts.loadRDF(rdf);
        System.out.println("Loaded " + n + " triples.");

        // Get all triples from the default graph and show them.
        Cursor cc = ts.getStatements(null, null, null);
        AGUtils.showTriples(cc);
        
        // Load RDF data into a named graph
        URI g = ts.createURI("http://example.org/wilburwine");
        n = ts.loadRDF(AGPaths.dataSources("wilburwine.rdf"), g);
        System.out.println("Loaded " + n + " triples.");

        // Get some triples from the named graph g and show them.
        cc = ts.getStatements(null, null, null, g);
        AGUtils.showTriplesWithLimit(cc, 20);
        
        // Close the triple store and disconnect from the server.
        ts.closeTripleStore();
        ags.disable();
    }
    
}

Up | Next