AGLoadNtriples.java

package com.franz.ag.examples;

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

public class AGLoadNtriples {

    /**
     * Demonstrates how to load a triple store from an N-Triples file.
     * 
     * @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 fresh triple-store.
        AllegroGraph ts = ags.renew("testnt", AGPaths.TRIPLE_STORES);
        
        // Load the file in N-Triples format
        String ntripleFile = AGPaths.dataSources("test.nt");        
        System.out.println("Loading N-Triples " + ntripleFile);
        ts.loadNTriples(ntripleFile);
        System.out.println("Loaded " + ts.numberOfTriples() + " triples.");
        
        // Get all triples from the default graph and show them.
        Cursor cc = ts.getStatements(null, null, null);
        AGUtils.showTriples(cc);
        
        // Load N-Triples data into a named graph
        URI g = ts.createURI("http://example.org/kennedy");
        long n = ts.loadNTriples(AGPaths.dataSources("kennedy.ntriples"), g);
        System.out.println("Loaded " + n + " triples.");
        
        // Get some triples from a given graph g and show them.
        cc = ts.getStatements(null, null, ts.createLiteral("Arnold"), g);
        AGUtils.showTriples(cc);
        
        // Close the store and disconnect from the server.
        ts.closeTripleStore();
        ags.disable();
    }

}

Up | Next