Download: HelloMIDlet.java This article contains everything you need to know to get started developing in the Java Platform, Micro Edition (Java ME) environment. You'll learn how to install the development tools, how to write your first Java ME application, how to build it, and how to test the application in an emulator. The application you'll build, a MIDlet, runs on implementations of the Mobile Information Device Profile, one of the Java ME specifications. (For a background on wireless Java technology, read Introduction to Wireless.) Most MIDlets will connect to some type of network service, so Part II of this tutorial describes how to set up a servlet development environment and how to write, compile, and test a servlet. The final step is creating a MIDlet that makes a network connection to the servlet. What You Need
In this article you'll use Sun's Sun Java Wireless Toolkit for CLDC which is both free and lightweight. The Sun Java Wireless Toolkit can be integrated into IDEs but it can also run standalone, which is how I'll describe it in this article. MIDP development tools are available only for Windows environment. In this article, you'll assemble a development environment based on three pieces of software:
What editor you use is, of course, entirely up to you. On Unix-like systems, Installing the Java Platform, Standard Edition (J2SE SDK)
You'll need J2SE 5.0 to form the foundation of your development environment. (You will sometimes hear developers refer to this as the JDK, or Java Developer's Kit, but the current name is J2SE 5.0) You can download the current version from http://java.sun.com/j2se/1.5.0/download.jsp The current version is 1.5.0. J2SE 5.0 is available for Linux, Solaris, and Windows. How does J2SE 5.0 help you develop wireless applications? First, it provides the Java platform upon which the Sun Java Wireless Toolkit runs. Second, it includes a Java compiler and other tools that the toolkit uses to build your projects. Once you've finished downloading J2SE 5.0 , you'll need to install it. In Windows, run the file you just downloaded. The installer asks you some questions and installs the software. If you accept the defaults, J2SE 5.0 is installed in a directory like c:\jdk1.5.0_06. You should add the To test your installation, open up a command prompt. Type
Installing the Sun Java Wireless Toolkit
The next step is to install the Sun Java Wireless Toolkit, a set of tools that make it easy to build and test MIDP applications. (You can think of the toolkit as a miniature IDE; it automates several of the tasks related to building MIDP applications.) Begin by downloading the Sun Java Wireless Toolkit from http://java.sun.com/products/sjwtoolkit/. Execute the installation file. The installer tries to locate your J2SE 5.0 ; if it's having trouble, make sure you are pointing it to the directory where you installed J2SE 5.0 . The files for the toolkit will go into To run the toolkit itself, select the KToolbar shortcut. You should see the following screen.
The Sun Java Wireless Toolkit works with projects, where the end result of each project is one MIDlet suite. The toolkit works with one project at a time. You can change properties of the current project, build the project, and run the project in a device emulator. Several example projects come installed with the toolkit; we'll look at these later. Let's jump right in the water by creating a new project. Click on New Project in the button bar. The toolkit prompts you for a project name and the name of a MIDlet class in the project. Fill in
Once you fill in the project name and first MIDlet name, when click on “Create Project” the toolkit gives you a chance to edit the project settings. Just accept the defaults for now; press OK to finish creating the new project. In the text output pane of the Sun Java Wireless Toolkit, you'll see several helpful messages telling you where to store the project's source files. On my machine, these messages are:
The toolkit stores each project in a subdirectory of the apps directory. The name of the subdirectory is the same as the name of the project. Here, the toolkit has created a new directory,
The Create a MIDlet
To get you started with MIDlet development, let's write a simple MIDlet. Once you've chosen a text editor, type, cut and paste, or download the following code:
Save this code as Next, press the Build button in KToolbar. The toolkit will attempt to compile your project. If there are any compiler errors, you'll see them in the text output area of KToolbar. Fix the errors until the project builds successfully. When you use KToolbar to build a project, several additional directories are created:
As you can see, the Sun Java Wireless Toolkit has created Now you're ready to test your MIDlet suite. Click on the Run button. You should see a mobile phone emulator pop up:
The emulator is showing a list of MIDlets in the MIDlet suite. This example shows only one MIDlet. Although the name you see here is HelloSuite, the class that will be run is Back in the emulator, click on the soft button below Launch to start up the MIDlet. It will display a simple screen like the one below. Click on Exit to leave the MIDlet. Close the emulator window or hit the Escape key to end the emulator session.
The emulator you've just used is the DefaultColorPhone. The Sun Java Wireless Toolkit has other emulators as well. Try running Once you've had your fill of playing with A Quick Look Under the Hood
Now that you've had some fun, let's take a step back and talk about what it is that the Sun Java Wireless Toolkit does for you. None of it is too complicated, but the toolkit takes several potentially aggravating steps and condenses them into a single button push. First, what happens when you press the Build button? The toolkit finds all the You could make this selection yourself, using the command Beyond compilation, MIDP classes must be preverified before they can be run on a MIDP device. You may recall that J2SE 5.0 has a bytecode verifier that checks You could perform the first verification yourself using the command line Finally, MIDlets are bundled into MIDlet suites for distribution to actual devices. This process entails JARing the MIDlet suite class files and the resource files, and putting some extra information in the JAR manifest. Again, these chores are best left to the Sun Java Wireless Toolkit. To bundle up your MIDlet suite, select Project | Package from the menu. The Just Wait 'til Next Time
You now understand the rudiments of MIDP development and have the software you need to build your own MIDlet suites. That's pretty spectactular all by itself. But MIDP client programming is only half the picture. With some exceptions, most of the really interesting MIDlets will be those that connect to some network service. In Part II of this article, you'll learn how to install, configure and run a server environment. You'll write a simple Java servlet and modify the MIDlet so that it makes a network connection to the servlet. After that, the world is yours for the taking. Resources
The user guide that comes with the Sun Java Wireless Toolkit contains useful information about the application development cycle, MIDlet attributes, the files in each of the installed directories, and device types and portability. It also includes instruction on configuring the emulator and using the Wireless Toolkit from the command line. If you're new to MIDP programming, you might also find these articles helpful: Back To Top | ||||||||||||||||||||||||||
|
| ||||||||||||