Eclipse for Jena & ARQ. File needed Jena-2.5.5 (http://jena.sourceforge.net/downloads.html)http://jena.sourceforge.net/downloads.html ARQ-2.2 (http://jena.sourceforge.net/ARQ/download.h.

Slides:



Advertisements
Similar presentations
XS - Platform What is XS – Manager ?
Advertisements

Using Eclipse. Getting Started There are three ways to create a Java project: 1:Select File > New > Project, 2 Select the arrow of the button in the upper.
1 eclipse Tips. 2 What is eclipse? Eclipse is a popular IDE (Integrated Development Environment) that we will use to create, compile, execute, and test.
Model Creation and Testing using Eclipse plug-ins.
Aspect-Oriented Software Development (AOSD) Additional Material Start Writing in AspectJ.
Java Integrated Development Environments: ECLIPSE Part1 Installation.
I.1 ii.2 iii.3 iv.4 1+1=. i.1 ii.2 iii.3 iv.4 1+1=
Lab 0 Objectives Input a basic Java Program Learn the basics of VisualAge.
I.1 ii.2 iii.3 iv.4 1+1=. i.1 ii.2 iii.3 iv.4 1+1=
A step-by-step tutorial to launch Terrier under Eclipse
Update the PATH variable Trying to run the command: “javac Ex1.java” you’ve may encountered the error: “javac is not recognized as internal or external.
Create A Visual Studio Template
Eclipse IDE. 2 IDE Overview An IDE is an Interactive Development Environment Different IDEs meet different needs BlueJ and DrJava are designed as teaching.
03 Using Eclipse. 2 IDE Overview An IDE is an Interactive Development Environment Different IDEs meet different needs BlueJ and DrJava are designed as.
LaMothe DirectX Game in Visual Studio 2008 Matthew Sable.
JSP and Servlets Lecture notes by Theodoros Anagnostopoulos.
1 eclipse Tips. 2 What is eclipse? Eclipse is a popular IDE (Integrated Development Environment) that we will use to create, compile, execute, and test.
Google Maps Android API v2 吳俊興 國立高雄大學 資訊工程學系 CSF645 – Mobile Computing 行動計算
Intro to C++. Getting Started with Microsoft Visual Studios Open Microsoft Visual Studios 2010 Click on file Click on New Project Choose Visual C++ on.
Setting up Eclipse Computer Organization I 1 August 2009 ©2009 McQuain Getting Eclipse for C/C++ Development Go to and click on Download.
Plug-in Development Environment. Session Outline Tools Installation Configuration New Project Basic Debugging Remote Debugging.
®® Microsoft Windows 7 for Power Users Tutorial 4 Creating and Customizing Shortcuts.
1 Building the CarryDrop Simulation in JBuilderX By Deddy Koesrindartoto 08/16/2004.
Tutorial 1 Running JADE Under Eclipse Dr. Fuhua Lin School of Computing and Information Systems Athabasca University, Alberta, Canada Oct. 27, 2009.
Setting Up Eclipse. What is Eclipse? Eclipse is a free, downloadable software that allows us to create, compile, and run JAVA programs.
Topic Java EE installation (Eclipse, glassfish, etc.) Eclipse configuration for EE Creating a Java Web Dynamic Project Creating your first servlet.
GumTree Development Environment Setup Windows Only Compatible with Eclipse 3.2 M3 (Last update: 16/11/05)
JDBC Tutorial CSCI 201L Jeffrey Miller, Ph.D. HTTP :// WWW - SCF. USC. EDU /~ CSCI 201 USC CSCI 201L.
DEVS M&S Tutorial with eclipse IDE Chungman Seo
Liferay Installation Prepared by: Do Xuan Hai 8 August 2011.
Installing Repast in the Eclipse IDE Charlie Gieseler 6/28/04.
Tool Install How to download & install Java 6 & Eclipse updated version based on Dr. G. L. Ray’s slides.
Java Programming, Second Edition Appendix A Working with Java SDK 1.4.
XP New Perspectives on Microsoft Office FrontPage 2003 Tutorial 7 1 Microsoft Office FrontPage 2003 Tutorial 8 – Integrating a Database with a FrontPage.
Eclipse Project. Installing Visit to download a copy for your home computerhttp:// –Get Release version 3.0 (or.
Surya Bahadur Kathayat Outline  Ramses  Installing Ramses  Ramses Perspective (Views and Editors)  Importing/Exporting Example.
Introduction to Eclipse Programming with an Integrated Development Environment.
Open project in Microsoft Visual Studio → build program in “Release” mode.
Building the CarryDrop simulation in Eclipse Creating a new project with existing code from John Murphy’s RePast tutorial.
® IBM Software Group © 2006 IBM Corporation Rational Asset Manager v7.2 Using Scripting Tutorial for using command line and scripting using Ant Tasks Carlos.
Time to apply stuff… Faculty of Mathematics and Physics Charles University in Prague 5 th October 2015 Workshop 1 – Java Wrestling.
Software Design– Unit Testing SIMPLE PRIMER ON Junit Junit is a free simple library that is added to Eclipse to all automated unit tests. The first step,
Netbeans QuickStart. Creating a project File->New Project –For now you want General->Java Application –Then fill in the project details.
How to install JavaCV in Eclipse. Make sure to download and install all these before you proceed Eclipse for Java EE developers (current is Juno)
Today Javadoc. Packages and static import. Viewing API source code. Upcoming Topics: –protected access modifier –Using the debugger in Eclipse –JUnit testing.
Java IDE Dwight Deugo Nesa Matic
The Bookstore Problem. Contents I.Problem Description II.Solution III.Exercise.
Database Programming Basic JDBC Programming Concepts.
DT249-Information Systems Research Practice Programming Revision Lecture 3 Lecturer: Patrick Browne.
CLOUD
Getting Eclipse for C/C++ Development
Exercise 3: Configuring User Home Folders
SEEM4570 Tutorial 1:Software Installation
ATS Application Programming: Java Programming
Download TPL.zip to some directory
Executing Runtime Checks (For Comp401 and Comp410)
Setting up Netbeans IDE BY: Matthew Hoover Alcon Labs Summer Intern
CMPE 152: Compiler Design ANTLR 4 and C++
Setting up Eclipse Locally
Executing Runtime Checks (For Comp401 and Comp410)
Setting up an Eclipse project from a repository on GitHub
Starting Jena 3 in Eclipse
Java External Libraries & Case Study
Turning in Assignments
Java IDE Dwight Deugo Nesa Matic Portions of the notes for this lecture include excerpts from.
Getting Eclipse for C/C++ Development
How to import CAP Library
Working with Libraries
Java Code Review with CheckStyle
Presentation transcript:

Eclipse for Jena & ARQ

File needed Jena ( ARQ-2.2 ( tml) tml Eclipse (

Part I. Create a java project

1. Open Eclipse and create a new project

2. Select java project

3. Define a project name then click finish

5. Copy lib folder in Jena to the project folder (the default path is c:\users\{yourname}\workspace\{project name}) 6. Copy jena folder in Tutorial folder to src folder under your project folder 7. Right click the project folder in Eclipse and refresh it

Part II. Add library files to project

8. Right click the project folder in Eclipse and select Properties

9. Go to Java Build Path> Libraries

10. Click Add JARs… and select all the jar file in lib folder

11. Click OK to finish adding jar library

Part III. Run Jena Program

12. Select a java program, right click, select Run As> Java Application

Part IV. Run ARQ Program

13. Create a package named arq under folder src of your project folder 14. Copy sparql.java in ARQ-2.2\src\arq folder to the folder you’ve just created

15. Copy vc-db-1.rdf and arq file in the Tutorial folder to your project folder

16. Copy the files in lib folder under ARQ-2.2 folder to lib folder under your project older

17. Refresh the project folder in Eclipse and open sparql.java

18. Right click the sparql.java file and select Run Configurations…

19. Go to Arguments and type “--data vc-db-1.rdf --query arq\q1.rq” 20. Click Apply, Click Run

Bloggers.java

Move Bloggers.java into src folder, it will automatically set up a default package Move bloggers.rdf into src folder as well

Run Bloggers.java as run configurations Click Java Application, and select Bloggers Make sure in your Main, that you are in the right project and right main class Click run.

Now you can see the result in the Console window

Jena Example: Expert Search

Move expert search java files into src folder, it will automatically set up a default package Since your expert.owl is stored in mysql, there is no need to move expert.owl into the src folder

Run MainIndividual.java as run configurations Click Java Application, and select MainIndividual Make sure in your Main, that you are in the right project and right main class Click run.

Now you can see the result in the Console window

Jena Example: Family Tree

Move familytree java files into src folder, it will automatically set up a default package Move family.rdf, family1.nt and family2.nt into src folder as well

Run FamilyModel.java as run configurations Click Java Application, and select FamilyModel Make sure in your Main, that you are in the right project and right main class Click run.

Now you can see the result in the Console window

Data Search Tutorial

Move data files into project folder Move files in queries folder into project folder

Run Sparql.java as run configurations

Get results