Rakesh Gourineni
Rakesh Gourineni

Reputation: 1421

Find the RDF mappings from the given RDF(.ttl) files and get the output in JSON

I am Rakesh. I am working on semantic web and came across a issue. I have 10 .ttl(Turtle) files. I need to find the mappings from these files and display the output in JSON format. The entire project must be like a standalone application.

I googled for the solution. I found out that I need to find APIs to do the mapping. Then I think I need to write a Java program to get the JSON output.I am new to semantic web and need some help from you. Please guys help me.

Rakesh

Upvotes: 0

Views: 634

Answers (1)

Arash Shahkar
Arash Shahkar

Reputation: 655

You can use Jena. It's currently an Apache project and provides you with a powerful library for working with RDF models and graphs alongside much more.

You can find it here: http://jena.apache.org/

This page in the documentation (RDF I/O) is probably all you need for now: http://jena.apache.org/documentation/io/iohowto.html

Upvotes: 1

Related Questions