定时器和贴纸 : 定时器 « 基于J2ME « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 基于J2ME » 定时器屏幕截图 
定时器和贴纸
定时器和贴纸

/*
 * TimerMIDlet.java Copyright (c) 2000 Sun Microsystems, Inc. All Rights
 * Reserved.
 
 * Author: Srikanth Raju
 
 * This software is the confidential and proprietary information of Sun
 * Microsystems, Inc. ("Confidential Information"). You shall not disclose such
 * Confidential Information and shall use it only in accordance with the terms
 * of the license agreement you entered into with Sun.
 
 * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
 * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
 * NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY
 * LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES.
 */

import java.util.Timer;
import java.util.TimerTask;

import javax.microedition.lcdui.Choice;
import javax.microedition.lcdui.ChoiceGroup;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.List;
import javax.microedition.lcdui.Ticker;
import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;

public class TimerMIDlet extends MIDlet implements CommandListener {

  private Display display = null;

  private Ticker stockTicker = null;

  private String[] _stocks = "SUNW""ORCL""NOK""MOT" };

  private String[] _prices = "9""11""9.25""14.5" };

  private static final Command exitCommand = new Command("Exit",
      Command.STOP, 0);

  private static final Command backCommand = new Command("Back",
      Command.BACK, 0);

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

  private Timer stockRefresh = null;

  private StockRefreshTask stockRefreshTask = null;

  private int refresh_interval = 10000// 1000 = 1 second

  private List menu = null;

  private ChoiceGroup _updatesChoices = null;

  private Form _updatesForm = null;

  private String _currentMenu = null;

  public TimerMIDlet() {
  }

  public void startApp() throws MIDletStateChangeException {

    display = Display.getDisplay(this);
    menu = new List("Stock Menu", Choice.IMPLICIT);
    menu.append("Updates"null);
    menu.append("Add Stocks"null);
    menu.append("Remove Stocks"null);
    menu.addCommand(exitCommand);
    menu.setCommandListener(this);
    // Make the ticker
    stockTicker = new Ticker(makeTickerString());
    menu.setTicker(stockTicker);

    display.setCurrent(menu);
    _currentMenu = "Stock Menu";

    _updatesForm = new Form("Updates");
    _updatesChoices = new ChoiceGroup("Update Interval:", Choice.EXCLUSIVE);
    _updatesChoices.append("Continuous"null)// will be 10 seconds
    _updatesChoices.append("15 minutes"null);
    _updatesChoices.append("30 minutes"null);
    _updatesChoices.append("1 hour"null);
    _updatesChoices.append("3 hours"null);

    _updatesForm.setTicker(stockTicker);
    _updatesForm.append(_updatesChoices);
    _updatesForm.addCommand(backCommand);
    _updatesForm.addCommand(doneCommand);
    _updatesForm.setCommandListener(this);

    //Set up and start the timer to refresh the stock quotes
    stockRefreshTask = new StockRefreshTask();
    stockRefresh = new Timer();
    stockRefresh.schedule(stockRefreshTask, 0, refresh_interval);
  }

  public String makeTickerString() {
    String retString = new String();
    for (int i = 0; i < _stocks.length; i++) {
      retString += _stocks[i];
      retString += " @ ";
      retString += _prices[i];
      retString += " ";
    }
    return retString;
  }

  public void pauseApp() {
    // free memory used by these objects
    display = null;
    stockRefresh = null;
    stockRefreshTask = null;
  }

  public void destroyApp(boolean unconditional)
      throws MIDletStateChangeException {

    notifyDestroyed();

  }

  public void commandAction(Command c, Displayable d) {

    if (c == exitCommand) {
      try {
        destroyApp(false);

      catch (MIDletStateChangeException msce) {
        System.out.println("Error in detroyApp(false) ");
        msce.printStackTrace();
      }
      notifyDestroyed();
    else if (c == backCommand) {
      _currentMenu = "Stock Menu";
      display.setCurrent(menu);
    else if (c == doneCommand) {
      switch (_updatesChoices.getSelectedIndex()) {
      case 0:
        refresh_interval = 10000;
        break;
      case 1:
        refresh_interval = 900000;
        break;
      case 2:
        refresh_interval = 1800000;
        break;
      case 3:
        refresh_interval = 3600000;
        break;
      case 4:
        refresh_interval = 10800000;
        break;
      default:
        break;
      }
      stockRefreshTask.cancel();
      stockRefreshTask = new StockRefreshTask();
      stockRefresh.schedule(stockRefreshTask, 0, refresh_interval);
      display.setCurrent(menu);
      _currentMenu = "Stock Menu";

    else {
      List shown = (Listdisplay.getCurrent();
      switch (shown.getSelectedIndex()) {
      case 0// Updates
        display.setCurrent(_updatesForm);
        _currentMenu = "Updates";
        break;

      case 1// Add Stock
        System.out.println("Add Stock... ");
        _currentMenu = "Add Stock";
        break;
      case 2// Remove Stock
        System.out.println("Remove Stock... ");
        _currentMenu = "Remove Stock";
        break;
      }
    }
  }

  /**
   * This is an extention of the TimerTask class which runs when called by
   * Timer. It refreshes the stock info for each stock from the quote server
   * and checks to see if any of the alerts should be fired.
   */
  class StockRefreshTask extends TimerTask {

    /**
     * Execute the Timer's Task
     */
    public void run() {

      try {
        // Just return if the database is empty
        if (_stocks.length == 0)
          return;
        else {
          for (int i = 0; i < _stocks.length; i++) {
            System.out.println("Stock price for symbol: "
                + _stocks[i" is: " + _prices[i]);
          }
        }
      catch (Exception e) {
        System.out.println("error('UPDATE FAILED', 2000)");
      }
    }
  }
}
           
       
Related examples in the same category
1. 定时器和动画定时器和动画
2. 定时器模板定时器模板
3. Demonstrate simple animation using a Timer and TimerTaskDemonstrate simple animation using a Timer and TimerTask
4. A simple class that shows an example of using a Timer and a TimerTask.A simple class that shows an example of using a Timer and a TimerTask.
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.