Eclipse rcp 窗口激活

private static Shell windowShell;

    public static void active() {
        if (null != windowShell && !windowShell.isDisposed()) {
            if (!windowShell.getMinimized()) {
                windowShell.setMinimized(true);
            }
            windowShell.setMinimized(false);
            windowShell.forceActive();
            windowShell.forceFocus();
        }
    }

原文地址:https://www.cnblogs.com/xxonehjh/p/2914241.html