Skip Headers
Oracle® Java ME Embedded Getting Started Guide for the Windows Platform
Release 3.4
E35132-03
  Go To Table Of Contents
Contents
Go To Index
Index

Previous
Previous
 
Next
Next
 

4 Using the Oracle Java ME SDK Software with Eclipse

Using the Eclipse integrated development environment, you can create and test embedded applications using a graphical development environment.


Note:

The examples in this chapter use the Eclipse Indigo 3.7 platform.


Installing the Oracle Java ME SDK Eclipse Plugin

The Oracle Java ME SDK Plugins are the same for the Kepler 4.3, Juno 4.2, and Indigo 3.7 platforms.

To download the Oracle Java ME SDK Plugins file for Eclipse (oracle-jmesdk-3-4-rr-eclipse-plugins.zip), go to the following location:

http://www.oracle.com/technetwork/java/javame/javamobile/download/sdk

Installing Plugins on Eclipse Indigo 3.7

  1. In Eclipse, go to Help > Install New Software. This displays the Available Software screen, as shown in Figure 4-1.

    Figure 4-1 The Eclipse Available Software Screen

    Description of Figure 4-1 follows
    Description of "Figure 4-1 The Eclipse Available Software Screen"

  2. Press the Add button. This displays the Add Repository window.

  3. In the Add Repository window, press the Archive button to open a file browser.

  4. In the file browser, select the Eclipse plugin file that you downloaded. Click Open to return to the previous dialog.

  5. The Add Repository window appears. Press OK.

  6. The category Java ME SDK Tools appears in the Name area. Check the box in front of Java ME SDK Tools and ME SDK Demos as shown in Figure 4-2. Click Next.

  7. Figure 4-2 Selecting Oracle Java ME SDK Plugins

    Description of Figure 4-2 follows
    Description of "Figure 4-2 Selecting Oracle Java ME SDK Plugins"

  8. The installation details are displayed. Press Next. The items you checked are listed, as shown in Figure 4-3. Press Next again.

    Figure 4-3 Eclipse Plugins Installation Details

    Description of Figure 4-3 follows
    Description of "Figure 4-3 Eclipse Plugins Installation Details"

  9. Accept the terms of the license agreement and click Finish.

  10. Check the Java ME SDK Tools Category and its subcategories and press the Next button to start the Add wizard.

  11. Accept the terms of the license agreement and click Finish. The installation process starts.

  12. When the installation process completes, restart Eclipse. The Eclipse Welcome Screen is displayed, as shown in Figure 4-4.

    Figure 4-4 The Eclipse Welcome Screen

    Description of Figure 4-4 follows
    Description of "Figure 4-4 The Eclipse Welcome Screen"

Installing Plugins on Eclipse Kepler 4.3 and Juno 4.2

On Eclipse Kepler 4.3 and Juno 4.2, installing the Oracle Java ME SDK plugins requires the Eclipse Mobile Tools for Java (MTJ) toolkit. The MTJ is not bundled with Juno and must be installed manually, before installing the Eclipse plugins.

To install the Eclipse Mobile Tools for Java toolkit:

  1. Go to Help > Install New Software.

  2. In the “Work with” field, enter this URL:

    http://download.eclipse.org/mtj/updates/1.1.2/stable/

  3. Click Add.

    When the plugins are discovered, open the Mobile and Device Development Tools hierarchy and check Mobile Tools for Java Examples and Mobile Tools for Java SDK. Click Next.

    On the installation screen select all plugins and click Finish then click OK.

  4. A Juno plugin named org.eclipse.jetty.server_<version>.jar conflicts with the MTJ libraries when the plugin version is higher than 6.

    If the org.eclipse.jetty.server version is higher than 6 you must prevent it from loading by changing its name so the JAR file is not parsed. Locate the file in the \plugins directory of your Juno installation and change the extension from .jar to something else.

    For example, change it to: org.eclipse.jetty.server_<version>.old


Note:

Once you have installed the MTJ toolkit for Eclipse Kepler 4.3 or Juno 4.2, the procedure for installing the Oracle Java ME SDK plugins is the same as for Eclipse Indigo 3.7. See "Installing Plugins on Eclipse Indigo 3.7".


Configuring Eclipse

To configure Eclipse, follow these steps:

  1. Select Window > Open Perspective > Other and choose Java ME, as shown in Figure 4-5. Click OK.

    Figure 4-5 Selecting Java ME for Configuration

    Description of Figure 4-5 follows
    Description of "Figure 4-5 Selecting Java ME for Configuration"

  2. Select Window > Preferences > and expand the Java ME node.

  3. Select Device Management. The Device Management page displays a list of devices used by Oracle Java ME SDK projects.

  4. Click the Manual Install... button, to the right of the Device Management screen.

  5. In the Specify Search Directory field, enter or browse to the location of the Oracle Java ME SDK platform installation. For example:

    C:\Java_ME_platform_SDK_3.4

  6. Click OK. When the five default emulators are detected, make sure all the devices are checked and click Finish.

  7. Click OK to close the installation window.

    This returns you to the Eclipse main window. The Oracle Java ME SDK is now ready to use.

Creating a Sample IMlet File

In this section, you create a sample IMlet file, IMletDemo.java, from the code provided in Example 4-1. This IMlet file is used in the next section, "Creating a New Oracle Java ME SDK Project in Eclipse."

  1. Copy the code shown in Example 4-1 into a text file. Use Notepad rather than WordPad, to avoid any unneeded extra characters.

  2. Name the file IMletDemo.java and Save. Set the file aside for now.

Example 4-1 Code for the Sample IMletDemo.java Project in NetBeans

import javax.microedition.midlet.MIDlet;

public class IMletDemo extends MIDlet {

     boolean bFirst = false;
     boolean loopFlag = true;


     public void startApp() {

         if (bFirst = false) {

            try {
                // Perform startup operations
            } catch (Exception ex) {
                ex.printStackTrace();
                return;
            }

            bFirst = true;
         } else {
              System.out.println("IMlet Demo is already started...");
         }

         // Start program here

    }

    public void pauseApp() {
         //  Pause the application
    }

    public void destroyApp(boolean unconditional) {
       bFirst = false;

       // Close all resources that have been opened

    }


}

Creating a New Oracle Java ME SDK Project in Eclipse

Follow the steps below to create a new Oracle Java ME SDK project in the Eclipse IDE:

  1. Choose the File >New >Project > Java ME > Midlet Project menu item and click Next.

  2. When the Create a MIDlet Project window appears, enter a Project Name (for example, IMletDemo).

  3. To the right of the Configurations window, press the Add... button to add a configuration. This displays the Add Configuration dialog box, with no configurations.

  4. In the Add Configuration dialog box, select "Oracle Java(TM) Platform Micro Edition SDK 3.4" from the drop-down menu in the SDK field. In the Device field, select "IMPNGDevice1."

  5. Press Finish. This displays the New MIDlet Project window again, with IMPNGDevice1 selected as the Active Configuration.

  6. Press Next. This displays the MIDlet Project Content dialog box, as shown in Figure 4-6.

    The MIDlet Project Content dialog box allows you to create an Application Descriptor for your new project.

  7. In the MIDlet Project Content dialog box, set the following fields as shown here:

    • Microedition Configuration: Connected Limited Device Configuration (1.1)

    • Microedition Profile: Information Module Profile (NG)

    Figure 4-6 Creating A New Application Descriptor

    Description of Figure 4-6 follows
    Description of "Figure 4-6 Creating A New Application Descriptor"

  8. Press Finish to create the new IMletDemo project.

    Your new Eclipse project is ready to be run, as shown in Figure 4-7.

    Figure 4-7 The New IMletDemo Project Overview

    Description of Figure 4-7 follows
    Description of "Figure 4-7 The New IMletDemo Project Overview"

Configuring the Application Descriptor

With the IMletDemo project displayed in the Overview window of the Eclipse workscreen, do the following:

  1. Click the Application Descriptor tab to display the contents of the Application Descriptor.

  2. Change the MicroEdition-Profile property to IMP-NG, as shown in Figure 4-8.

    Figure 4-8 Configuring the Application Descriptor

    Description of Figure 4-8 follows
    Description of "Figure 4-8 Configuring the Application Descriptor"

  3. Click the Application Descriptor in the Pack window, as shown in Figure 4-9.

  4. Press Control-S to save your changes.

    Figure 4-9 Saving Changes to the Application Descriptor

    Description of Figure 4-9 follows
    Description of "Figure 4-9 Saving Changes to the Application Descriptor"

Adding a Test MIDlet to the Project

Adding a Test MIDlet to Eclipse allows to you set up sample code, from which you can easily launch your own project. To add a test MIDlet to Eclipse:

  1. Select File > New > Java ME MIDlet.

  2. Enter the name and optional package of the MIDlet, as shown in Figure 4-10.

    Figure 4-10 Creating a New Java MIDlet

    Description of Figure 4-10 follows
    Description of "Figure 4-10 Creating a New Java MIDlet"

  3. Press Finish. This creates the IMletDemo test MIDlet and displays Eclipse default code, as shown in Figure 4-11.

    Figure 4-11 Displaying the IMletDemo Test MIDlet Sample Code

    Description of Figure 4-11 follows
    Description of "Figure 4-11 Displaying the IMletDemo Test MIDlet Sample Code"

Adding Sample Code to a New Project

You have just created a new Oracle Java ME Embedded project as a test MIDlet in Eclipse. At this point, you can use the skeleton code provided in "Creating a Sample IMlet File" to start building an embedded project.

  1. Select and delete the default code displayed in your new Eclipse project window.

  2. Copy and paste the sample code you created in "Creating a Sample IMlet File" into the Eclipse project window.

  3. Select IMletDemo.java in the Package Explorer window.

  4. Press Control-S to save the new IMletDemo.java code in the Eclipse workscreen.

Figure 4-12 shows the Eclipse IDE window with the new project sample code incorporated.

Figure 4-12 The IMletDemo Sample Project Code

Description of Figure 4-12 follows
Description of "Figure 4-12 The IMletDemo Sample Project Code"

Running the IMletDemo Sample Project

To run the IMletDemo sample code:

  1. With IMletDemo.java selected, press Control-F11.

    This runs the sample code and launches the IMPNGDevice1 emulator, with the IMletDemo MIDlet Suite running, as shown in Figure 4-13.

For more information on working with the Oracle Java ME SDK emulator, see Chapter 3.

Figure 4-13 The IMPNGDevice1 Emulator with the IMLetDemo Running

Description of Figure 4-13 follows
Description of "Figure 4-13 The IMPNGDevice1 Emulator with the IMLetDemo Running"