Hi,
I am completely new to Clerezza (and I do not use OSGi often).

I had just a quick look at the documentation on the website, but I'd like to learn how I could use the Clerezza "graph" APIs directly.

Here is an example of how to parse an RDF Turtle file and write it out as N-Triples using the Jena Model APIs:

----
InputStream in = ...;
Model model = ModelFactory.createDefaultModel();
Model model.read(in, null, "TURTLE");
model.write(System.out, "N-TRIPLES");
----

Could you help me and guide me in writing a similar example using Clerezza?

I think the org.apache.clerezza.rdf.core module only isn't enough, but I am not
sure which module should I look at. The list of Clerezza modules is "extensive" [1]. Is there a map? :-)

Java code and a small example would do.

Thanks,
Paolo

[1] https://repository.apache.org/content/repositories/snapshots/org/apache/clerezza/


Reply via email to