All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openprovenance.prov.sparql.CommandLine Maven / Gradle / Ivy

There is a newer version: 2.2.1
Show newest version
package org.openprovenance.prov.sparql;

import java.io.IOException;

public class CommandLine {

    // write a main method that parse its argument , as follows:
    // -infile  : input file
    // -outfile  : output file
    // -informat  : input format
    // -outformat  : output format
    // -query  : query file
    // -ontology  : ontology file


    public static void main(String[] args) throws IOException {
        String infile=null;
        String outfile=null;
        String informat=null;
        String outformat=null;
        String query=null;
        String ontology=null;

        for (int i=0; i© 2015 - 2025 Weber Informatics LLC | Privacy Policy