当前位置:  技术问答>java相关

J2ME Wirteless Toolkit下的又一个问题:(下面的代码为什么调试不能成功?)

    来源: 互联网  发布时间:2015-02-18

    本文导语:  import javax.microedition.lcdui.*; import javax.microedition.midlet.*; public class bbb extends MIDlet implements CommandListener {   private Display firstDisplay ;   private Form firstForm ;   private Command doneCommand;   public bbb()   {     firstDi...

import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;

public class bbb extends MIDlet implements CommandListener
{
  private Display firstDisplay ;
  private Form firstForm ;
  private Command doneCommand;
  public bbb()
  {
    firstDisplay = Display.getDisplay(this) ;
    doneCommand = new Command("DONE", Command.SCREEN, 1);
    firstForm = new Form("Hello,测试") ;
    StringItem firstStrItem = new StringItem("哈罗","米德列特") ;
    firstForm.append(firstStrItem) ;
    System.out.println("MIDlet启动") ;
  }

  protected void startApp() throws MIDletStateChangeException
  {
    TextBox textBox = new TextBox("Hello Midlet", "Hello !!", 256, 0);
    textBox.addCommand(doneCommand);
    textBox.setCommandListener( (CommandListener) this);
    firstDisplay.setCurrent(firstForm) ;
    firstDisplay.setCurrent(textBox);
  }

  protected void pauseApp()
  {
  }

  protected void destroyApp(boolean unconditional) throws MIDletStateChangeException
  {
  }
   public void commandAction(Command command, Displayable screen)
   {
    if (command == doneCommand){
       destroyApp(false);
       notifyDestroyed();
      }
   }
}


|
你到底在一开始想显示form还是textbox?
如果是textbox,请注释掉 firstDisplay.setCurrent(firstForm) ;

如果是form,要对form 进行 addcommand和setCommandListener,this 前也不需要加(commandListener),因为this本来就是个commandListener。

|
去掉throws MIDletStateChangeException 试试看!

|
或者把startApp pauseApp destroyApp都加上public。

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • J2ME高人求助?如何在jbuild6MobileSet2.0上运行下面的程序? iis7站长之家
  • J2ME测试框架 Gatling J2ME
  • J2ME GUI引擎 Fire 2.0 j2me
  • J2ME 的GUI工具包 J2ME Polish
  • J2ME手机密码管理器 KeePass for J2ME
  • 请J2ME高手解答,JBuilder6在J2ME开发中的应用步骤。
  • 比较一下J2EE/J2ME/J2ME/JDK/JSDK/都是什么呀????
  • Comtor J2ME
  • 这两天公司的网络坏了,俺只有跑到网吧来了.还有个关于J2ME的问题,请教,哎,雷老虎在不?J2ME Wireless ToolKit的原码从哪下载?....还有...看里面吧
  • J2me如何实现C/S结构?
  • 关于J2ME发展的九个问题
  • J2ME ARMY KNIFE
  • J2ME平台的IoC 容器 Signal Framework
  • J2ME Polish Plugin
  • J2me 游戏脚本引擎
  • 学j2me有前途吗?
  • j2me读写,修改本地文件
  • J2EE和J2ME?
  • J2ME手机UI框架 Apime
  • 哪有J2ME的书籍下载?
  • J2ME加密的问题


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3