You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 20 Next »

Here are the steps for running HJ-lib using an IDE:

Step 1: Java 8 Installation

You will also need a Java 8 installation on your machine and have your JAVA_HOME and PATH point to the new installation. Java 8 can be downloaded  and installed from the Oracle website.

For e.g., I have the following on my Mac machine's .bash_profile:

  JAVA8_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0.jdk/Contents/Home
  export JAVA_HOME=${JAVA8_HOME}
  export PATH=$JAVA_HOME/bin:$PATH

On Windows the environment variables have to be set up differently, refer to this stackoverflow question to see how it can be done.

 

Step 2: HJ-lib JAR File

Download the hj-lib jar file and save it to a local directory.

 

Step 3: IDE like IntelliJ or Eclipse

HJ-lib is a simple Java library (jar file) and can be used in any Java project. As such a simple text editor can be used to write programs that use hj-lib.

However, we recommend using an IDE like IntelliJ to do the Java development using hj-lib in the labs and assignments.

A free version of IntelliJ (Community Edition) can be downloaded and installed from the Jetbrains website.
 

Step 4: Your first project

We show how to set up a simple project with a hj-lib HelloWorld program in IntelliJ. Similar steps can be followed for other IDEs like Eclipse.

First, create a new project using the File -> New Project Menu. This should show a popup window as follows:

Now, choose a name for your project and a directory location for the project. Remember to select the Java 8 SDK and click Next:

On the next window click Finish, we do not need dependencies on any other technologies.

We now need to add the previously downloaded hj-lib jar from Step 2 as a dependency to this project. We need to do this from the module settings.

First enable the project view, befretrying to change the module settings.

We will be using Java 8 lambdas while developing with hj-lib, so we need to ensure the language level settings in the project:

Next, we need to add the library dependency:

Clicking on the plus icon and selecting a Java library allows us to choose the location for the jar file:

Once added, we can click 'Apply' to save our changes.

Ensure that habanero-java-lib has been added as a dependency to the module:

After confirming, click "OK" to save your changes.

We are now ready to write our first HJ application using HJ-lib.

To create a java file, right click on the 'src' folder and select New -> Java Class.

Use 'HelloWorld' as the name of the class and type in the sample program:

Here is the source code:

import static edu.rice.hj.Module1.async;
import static edu.rice.hj.Module1.finish;

public class HelloWorld {
    public static void main(final String[] args) {
        finish(() -> {
            async(() ->
System.out.println("Hello World - 1")
            );
            async(() ->
System.out.println("Hello World - 2")
            );
            async(() ->
System.out.println("Hello World - 3")
            );
        });
    }
}

Now we can run this program by right clicking on the HelloWorld item on the project explorer and clicking run.

Running the file on my machine produces the following output for example:

 


  • No labels