可以搞个static变量,通过这个变量来控制线程
如:
static int flag=1;线程中:
public void run(){
  if(flag!=1) return;
  
}想停止这个线程时,在其它类中把这个flag置为非"1"即可