add命令到MIDlet : 命令 « 基于J2ME « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » 基于J2ME » 命令 
31. 17. 1. add命令到MIDlet
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;

import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.TextBox;
import javax.microedition.lcdui.TextField;
import javax.microedition.lcdui.Ticker;
import javax.microedition.midlet.MIDlet;

public class TextBoxMIDlet extends MIDlet implements CommandListener {
  private static final int MAX_TEXT_SIZE = 64;
  protected TextBox textBox;
  protected Display display;
  private static final Command EXIT_COMMAND = new Command("Exit", Command.EXIT,0);

  private static final Command OK_COMMAND = new Command("OK", Command.OK, 0);

  private static final Command CLEAR_COMMAND = new Command("Clear",Command.SCREEN, 1);

  private static final Command REVERSE_COMMAND = new Command("Reverse",Command.SCREEN, 1);

  protected void startApp() {
    String str = null;
    try {
      InputStream is = getClass().getResourceAsStream("resources/text.txt");
      InputStreamReader r = new InputStreamReader(is);
      char[] buffer = new char[32];
      StringBuffer sb = new StringBuffer();
      int count;
      while ((count = r.read(buffer, 0, buffer.length)) > -1) {
        sb.append(buffer, 0, count);
      }
      str = sb.toString();
    catch (IOException ex) {
      str = "Failed to load text";
    }
    textBox = new TextBox("TextBox Example", str, MAX_TEXT_SIZE, TextField.ANY);
    Ticker ticker = new Ticker("This is a ticker...");
    textBox.setTicker(ticker);
    textBox.addCommand(OK_COMMAND);
    textBox.addCommand(EXIT_COMMAND);
    textBox.addCommand(CLEAR_COMMAND);
    textBox.addCommand(REVERSE_COMMAND);
    textBox.setCommandListener(this);
    display = Display.getDisplay(this);
    display.setCurrent(textBox);
  }

  protected void pauseApp() {
  }

  protected void destroyApp(boolean unconditional) {
  }

  public void commandAction(Command c, Displayable d) {
    if (c == EXIT_COMMAND) {
      destroyApp(true);
      notifyDestroyed();
    else if (c == OK_COMMAND) {
      System.out.println("OK pressed");
    else if (c == CLEAR_COMMAND) {
      textBox.setString(null);
    else if (c == REVERSE_COMMAND) {
      String str = textBox.getString();
      if (str != null) {
        StringBuffer sb = new StringBuffer(str);
        textBox.setString(sb.reverse().toString());
      }
    }
  }
}
31. 17. 命令
31. 17. 1. add命令到MIDlet
31. 17. 2. Start the MIDlet by creating a list of items and associating the exit command with itStart the MIDlet by creating a list of items and associating the exit command with it
31. 17. 3. midlet与简单文字和一些命令。
31. 17. 4. GET命令标签和类型GET命令标签和类型
31. 17. 5. exit命令
31. 17. 6. help命令help命令
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.