J2ME で単純な hello world プログラムを実行しようとしています。ubuntu 12.04 で Netbeans 7.2.1 を使用しています。パッケージ helloworld;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
/**
* @author mashombo
*/
public class Midlet extends MIDlet {
private TextBox tb;
private Display display = null;
public void helloworld(){
tb = new TextBox("Hello world Midlets"," -samboga", 100, 0);
}
public void startApp() {
if(display == null){
display = Display.getDisplay(this);
display.setCurrent(tb);
}
}
public void pauseApp() {
}
public void destroyApp(boolean unconditional) {
}
}
上記のコードを実行しようとすると、エミュレーターが応答しません。エミュレーターの右側にある起動ボタンを押しても何も起こりません。これが私が実行したときの出力です
Starting emulator in execution mode
Running with storage root /home/mashombo/j2mewtk/2.5.2/appdb/DefaultGrayPhone
Running with locale: en_ZA.UTF-8
/dev/dsp: No such file or directory
Running in the identified_third_party security domain
何か足りないものがありますか?私はNetbeansを初めて使用します