Wiz 3 No Java

Wiz 3 No Java Average ratng: 5,0/5 7249 votes

Oracle Java Standard Edition Embedded (Oracle Java SE Embedded) enables users to develop highly functional, reliable and portable applications for powerful embedded systems. NetBeans IDE supports Java SE Embedded features, such as footprint, memory, power, platform support, etc.

  1. Wiz 3 No Java Edition
  2. Wiz 3 No Javascript

Echo%JAVAHOME% java -version. Manually open command window to Java pathway.As a side note, you can also launch a command prompt directly from within the Java folder – navigate to your C: Program Files Java bin folder (or wherever your Java is installed), hold Shift + Right click inside the window, and click “Open a command window here”. In the lesson we will practise using the basic Java tools learned in previous articles. To do it let's develop the 'Guess game'. Its rules are as follows: Computer proposes a number from 1 to 1000. Human player tries to guess it. One enters a guess and computer tells if the number matches or it is smaller/greater than the proposed one. Guide Wizio the Wizard as he journeys through a magical land. Collect the potions as you go to create spells that will help you on your way. Use the keys to enter locked doors and hidden treasures. Throw the levers to get to reveal new routes and bonuses.

In this tutorial, you will learn how to get started with Java SE Embedded in NetBeans IDE and how to use the IDE support for Java SE Embedded.

Contents

To complete this tutorial, you need the software and resources listed in the following table.

Software or ResourceVersion Required
NetBeans IDEversion 8.0
Java Development Kit (JDK)version 7 or 8

Setting Up a Remote Platform in NetBeans IDE

Once Oracle Java SE Embedded runtime is downloaded and installed on your remote machine (Raspberry Pi is used for demonstration purposes in this tutorial), you need to set up NetBeans IDE with the remote platform as follows:

  • activate the Java SE feature in NetBeans IDE
  • install a remote Java SE platform in NetBeans IDE

    Note: The remote operating system must be UNIX. Windows is not supported.

    Mac

Edition

To activate the Java SE feature in the IDE:

  1. Choose Tools > Plugins from the main IDE's toolbar.
  2. In the Plugins dialog box, click the Installed tab and select Java SE in the list of available features.
  3. Click Activate.
  4. At the Welcome panel of the Installer dialog box, click Activate.
  5. When the activation is successfully completed, click Finish.
  6. Click Close to close the Plugins dialog box.

To install a remote Java SE platform in NetBeans IDE:

Wiz 3 no java edition
  1. Choose Tools > Java Platforms.
    The Java Platform Manager dialog box displays.
  2. Click Add Platform.
  3. In the Select Platform Type of the Add Java Platform wizard, select Remote Java Standard Edition and click Next.
    The IDE displays the Add Java Platform dialog box.
  4. Specify the remote platform details such as the name, the IP address or DNS name of the device, login, password, and the path to the JRE on the remote device.

    Note: The target operating system must be UNIX (Windows is not supported).

  5. Click Finish. The IDE validates the remote JRE by executing a probe and downloads the remote JRE system properties.
    A new remote Java SE platform displays in the Java Platform Manager dialog box.
Java

Now your NetBeans IDE is set up for remote Java SE development.

Creating and Running a Project in the IDE

Now let us create a project that is going to be first run in the IDE and then on the remote platform.

To create a project:

  1. In the IDE, choose File > New Project.
  2. In the New Project wizard, choose the Java category and select Java Application in the Projects list. Click Next.
  3. In the Name and Location page of the wizard, do the following:
    • In the Project Name field, type EmbeddedCalculator.
    • Leave the Use Dedicated Folder for Storing Libraries checkbox unselected.
    • In the Create Main Class field, type embeddedcalculator.EmbeddedCalculator.
  4. Click Finish.
    The IDE creates and opens the Java SE project in the Projects window.
  5. Replace the // TODO code application logic here line with the following code:
  6. Save your changes by choosing File > Save.

Wiz 3 No Java Edition

To test your application, right-click the project name and choose Run from the context menu. The calculated output can be viewed in the Output window (Window > Output).

Configuring a Project to Use a Remote Platform

To develop a Java SE embedded application on a remote platform using compact1, compact2, or compact3 runtime platforms, JDK 8 needs to be registered in the IDE.

To enable JDK 8 support in NetBeans IDE:

  1. In the IDE, choose Tools > Java Platforms from the main menu.
  2. Click Add Platform in the Java Platform Manager dialog.
  3. In the Add Java Platform dialog, select Java Standard Edition and click Next.
  4. Specify the directory that contains the JDK and click Next.
  5. Verify that the default locations of the platform sources zip file and API documentation are valid. Click Finish to close the Add Java Platform dialog box.
    JDK 8 is registered as a platform in the IDE.
  6. Click Close.

To configure your project to use JDK 8:

  1. Right-click the EmbeddedCalculator project in the Projects window and select Properties from the context menu.
  2. In the Project Properties dialog box, choose the Libraries category and set JDK 1.8 as the Java Platform.
  3. Select the Sources category and set Source/Binary Format to JDK 8.
  4. Specify the profile that is used as runtime on a remote platform (for example, Compact 2).
  5. Click OK to save the changes.
    Your project is set to recognize a particular runtime on a remote platform.

Running a Project on a Remote Platfrom

You can run and debug the application on a remote device after setting the project configuration to a configuration different from the default one.

Wiz 3 No Javascript

To create a new configuration:

  1. Right-click the project name in the Projects window and select Properties from the context menu.
  2. Choose the Run category.
  3. Click New to the right of the Configuration drop-down list.
  4. In the Create New Configuration dalog box, specify the name of a new configuration and click OK.
  5. Select the runtime platform name in the Runtime Platform drop-down list.
  6. Click OK to save your edits.

If you run the project on a remote platform (Run > Run Project (project name)), the output will look similar to what is shown in the figure below. Basara 2 heroes game.

To switch between project configurations:

  • Choose Run > Set Project Configuration > configuration name or right-click the project name and choose Set Configuration > configuration name from the context menu.

See Also