Mudit Balooja
Mudit Balooja

Reputation: 67

rdf4j on IntelliJ IDE?

Extreme beginner here trying to work on RDF. Can rdf4j work on IntelliJ IDEA or it works on Eclipse only? If it can work on IntelliJ, could anyone show me how?

Upvotes: 1

Views: 264

Answers (1)

Ortomala Lokni
Ortomala Lokni

Reputation: 62555

RDF4J is a library that can be used within any Java IDE such as IntelliJ IDEA, Visual Studio Code, Eclipse IDE or NetBeans.

If you use IntelliJ IDEA, you can import the project from GitHub using the menu Git -> Clone ... and using https://github.com/eclipse/rdf4j as the URL.

You can then open an example, by navigating in the Project window to rdf4j -> examples -> src -> main -> java -> org.eclipse.rdf4j.examples -> model and then right click on the green arrow, on the left of the source code, to run it.

enter image description here

Upvotes: 3

Related Questions