jena |
A package for some Jena command-line programs, including
- copying RDF data with representation conversion, eg XML to N3
- comparing two RDF files for isomorphism (extended equality)
- an interface to the ARP RDF parser
- access to the RDQL interpreter
- a schema-to-Java generator
|
Java Source File Name | Type | Comment |
dbcreate.java | Class | Create one Jena RDF model in a database. |
dbdump.java | Class | Write out the data from a database. |
dblist.java | Class | List the models available in a database
Usage:
jena.dblist [db spec]
where [db spec] is:
--spec file Contains an RDF description of the model
--db JDBC_url --dbUser userId --dbPassword password --dbType
Ignores any --model modelName . |
dbload.java | Class | Load data files into a Jena model in a database.
Usage:
jena.dbload [db spec] file [file ...]
where [db spec] is:
--spec file Contains an RDF description of the model
--db JDBC_url --dbUser userId --dbPassword password --dbType [--model modelName]
The syntax of a file is determimed by its extension (.n3, .nt) and defaults to RDF/XML. |
dbquery.java | Class | |
dbremove.java | Class | Destroy a Jena RDF model available in a database. |
juuid.java | Class | |
n3.java | Class | Read N3 files and print in a variery of formats. |
qtest.java | Class | |
query.java | Class | |
rdfcat.java | Class |
An RDF utility that takes its name from the Unix utility cat, and
is used to generate serialisations of the contents of zero or more
input model serialisations. |
rdfcompare.java | Class | A program which read two RDF models and determines if they are the same.
This program will read two RDF models, in a variety of languages,
and compare them. |
rdfcopy.java | Class | A program which read an RDF model and copy it to the standard output stream. |
rdfparse.java | Class | A command line interface into ARP.
Creates NTriple's or just error messages.
java <class-path> jena.rdfparse ( [ -[xstfu]][ -b xmlBase -[eiw] NNN[,NNN...] ] [ file ] [ url ] )...
java <class-path> jena.rdfparse --test
java <class-path> jena.rdfparse --internal-test
The last two forms are for testing. |
rset.java | Class | |
RuleMap.java | Class | General command line utility to process one RDF file into another
by application of a set of forward chaining rules.
Usage: RuleMap [-il inlang] [-ol outlang] [-d] rulefile infile
The resulting RDF data is written to stdout in format outlang
(default N3). |
schemagen.java | Class |
A vocabulary generator, that will consume an ontology or other vocabulary file,
and generate a Java file with the constants from the vocabulary compiled in. |
schemagen_orig.java | Class |
The original version of a program to read in an RDF schema and generate a corresponding Jena
constant schema class. |
sparql.java | Class | |
turtle.java | Class | |
version.java | Class | jena.version
Print out jena version information and exit.
author: Jeremy J. |