web-dev-qa-db-ja.com

Javaでアクティブウィンドウ情報を取得する

Java特定の名前のプロセスのウィンドウがアクティブな場合にのみ機能するようにアプリケーションをアップグレードしようとしています。これはJNIを使​​用することで可能であることがわかりましたが、方法がわかりませんそれを行うために正確に。それを説明する説明や例を見つけることができませんでした。私の質問は-Windowsで現在アクティブなウィンドウのプロセス名を取得する方法(JNIまたは他の何かを介して-他の解決策を受け入れる)?

30
James

多少の手間を省いて [〜#〜] jna [〜#〜] を使用してください。 downloadjna.jarおよびjna-platform.jarWin32 APIの場合。 pinvoke wikiおよび [〜#〜] msdn [〜#〜] は、適切なシステムコールを見つけるのに役立ちます。

とにかく、現在アクティブなウィンドウのタイトルとプロセスを印刷するコードは次のとおりです。

import static enumeration.EnumerateWindows.Kernel32.*;
import static enumeration.EnumerateWindows.Psapi.*;
import static enumeration.EnumerateWindows.User32DLL.*;
import com.Sun.jna.Native;
import com.Sun.jna.Pointer;
import com.Sun.jna.platform.win32.WinDef.HWND;
import com.Sun.jna.ptr.PointerByReference;

public class EnumerateWindows {
    private static final int MAX_TITLE_LENGTH = 1024;

    public static void main(String[] args) throws Exception {
        char[] buffer = new char[MAX_TITLE_LENGTH * 2];
        GetWindowTextW(GetForegroundWindow(), buffer, MAX_TITLE_LENGTH);
        System.out.println("Active window title: " + Native.toString(buffer));

        PointerByReference pointer = new PointerByReference();
        GetWindowThreadProcessId(GetForegroundWindow(), pointer);
        Pointer process = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, false, pointer.getValue());
        GetModuleBaseNameW(process, null, buffer, MAX_TITLE_LENGTH);
        System.out.println("Active window process: " + Native.toString(buffer));
    }

    static class Psapi {
        static { Native.register("psapi"); }
        public static native int GetModuleBaseNameW(Pointer hProcess, Pointer hmodule, char[] lpBaseName, int size);
    }

    static class Kernel32 {
        static { Native.register("kernel32"); }
        public static int PROCESS_QUERY_INFORMATION = 0x0400;
        public static int PROCESS_VM_READ = 0x0010;
        public static native int GetLastError();
        public static native Pointer OpenProcess(int dwDesiredAccess, boolean bInheritHandle, Pointer pointer);
    }

    static class User32DLL {
        static { Native.register("user32"); }
        public static native int GetWindowThreadProcessId(HWND hWnd, PointerByReference pref);
        public static native HWND GetForegroundWindow();
        public static native int GetWindowTextW(HWND hWnd, char[] lpString, int nMaxCount);
    }
}
56
Garrett Hall

このコードはJNA 4.0で動作します

import com.Sun.jna.Native;
import com.Sun.jna.platform.win32.User32;
import com.Sun.jna.platform.win32.WinDef.HWND;
import com.Sun.jna.platform.win32.WinDef.RECT;

// see http://Java-native-access.github.io/jna/4.0/javadoc/

public class EnumerateWindows {
    private static final int MAX_TITLE_LENGTH = 1024;

    public static void main(String[] args) throws Exception {
        char[] buffer = new char[MAX_TITLE_LENGTH * 2];
        HWND hwnd = User32.INSTANCE.GetForegroundWindow();
        User32.INSTANCE.GetWindowText(hwnd, buffer, MAX_TITLE_LENGTH);
        System.out.println("Active window title: " + Native.toString(buffer));
        RECT rect = new RECT();
        User32.INSTANCE.GetWindowRect(hwnd, rect);
        System.out.println("rect = " + rect);
    }
 }
10
John Henckel