Display info about a thread group and its threads and groups - Java java.lang

Java examples for java.lang:Thread

Description

Display info about a thread group and its threads and groups

Demo Code


//package com.java2s;
import java.io.PrintWriter;

public class Main {
    /**/*  w ww. j  av a2s  .com*/
     * Display info about a thread group and its threads and groups
     */
    private static void printGroupInfo(PrintWriter out, ThreadGroup g,
            String indent) {
        if (g == null) {
            return;
        }
        int num_threads = g.activeCount();
        int num_groups = g.activeGroupCount();
        Thread[] threads = new Thread[num_threads];
        ThreadGroup[] groups = new ThreadGroup[num_groups];

        g.enumerate(threads, false);
        g.enumerate(groups, false);

        out.println(indent + "Thread Group: " + g.getName()
                + "  Max Priority: " + g.getMaxPriority()
                + (g.isDaemon() ? " Daemon" : ""));

        for (int i = 0; i < num_threads; i++) {
            printThreadInfo(out, threads[i], indent + "    ");
        }
        for (int i = 0; i < num_groups; i++) {
            printGroupInfo(out, groups[i], indent + "    ");
        }
    }

    /**
     * Display information about a thread.
     */
    private static void printThreadInfo(PrintWriter out, Thread t,
            String indent) {
        if (t == null) {
            return;
        }
        out.println(indent + "Thread: " + t.getName() + "  Priority: "
                + t.getPriority() + (t.isDaemon() ? " Daemon" : "")
                + (t.isAlive() ? "" : " Not Alive"));
    }
}

Related Tutorials