只要能拿到Thread对象就可以查看啊
Thread t = new Thread ();System.out.println(t.getState());
判断是否在运行用isAlive方法 写了个例子。。不知是不是你想要的。。 public class Thread100 { /** * @param args */ public static ThreadA ta = new ThreadA();