下边的代码描述了如何在J2ME程序里中止一个线程(当requestedToStop标志为true的时候,将跳出循环)

public void run() {
    //另一个线程在执行中可能在某一条件满足的时候,将requestedToStop的值设为true
    while (!requestedToStop) {

    }
    // 做你想做的%$#%@@&@,此处删去2346字:)
    System.out.println("做完了");
}