Here you can find the source of dumpThreads()
public static void dumpThreads()
//package com.java2s; //License from project: Open Source License public class Main { public static void dumpThreads() { ThreadGroup threadgroup1 = null; for (ThreadGroup threadgroup = Thread.currentThread() .getThreadGroup(); threadgroup != null; threadgroup = threadgroup.getParent()) { threadgroup1 = threadgroup;// w w w . j ava 2 s. com } threadgroup1.list(); } }