What is MIDlet?MIDlet is an application written for MIDP. It is a Java program for embedded devices, specifically for JVM for JME. This program is typically implemented for Java enabled embedded devices. Java based games are called MIDlets.
What is MIDlet?1. A MIDlet is a Java class that forms the interface between the application and the operating system in a MIDP device. 2. The MIDP platform provides a MIDlet class javax.microedition.midlet.MIDlet. 3. Application developers need to extend this class and override the appropriate base-class methods to develop their applications. 4. A J2ME application must include at least one MIDlet, in addition to any supporting classes the application needs. 5. All are packaged into a JAR file for distribution.
|