eclipse开发J2ME问题!~
用eclipse开发j2me的helloworld程序!模拟器一闪就关了!有以下错误:
Warning: Running JAM, Ignoring all other options (but "-Xheapsize", and OTA flags if provided)
正在通过存储根 DefaultColorPhone 来运行
** Error installing suite (39): The JAD matches a version of a suite already installed.
Execution completed.
213447 bytecodes executed
2 thread switches
738 classes in the system (including system classes)
1371 dynamic objects allocated (57384 bytes)
1 garbage collections (0 bytes collected)
程序代码如下:
import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;
public class ddf extends MIDlet {
public ddf() {
}
protected void startApp() throws MIDletStateChangeException {
}
protected void pauseApp() {
}
protected void destroyApp(boolean arg0) throws MIDletStateChangeException {
}
}