java如何发送文本消息到wind
1 回答
明月笑刀无情
TA贡献1828条经验 获得超4个赞
jna-platform-4.0.0.jar
创建自定义Myuser32接口
int SendMessage(HWND hWnd, int Msg, int wParam, String lParam);
static Myuser32 INSTANCE = (Myuser32) Native.loadLibrary("user32",Myuser32.class, W32APIOptions.DEFAULT_OPTIONS);
Myuser32库的实例
发送接口函数
获得user32库的实例
static User32 user32 = User32.INSTANCE;
static Myuser32 myuser32 = Myuser32.INSTANCE;
(User32)用来查找窗口,(Myuser32)用来发送消息
获取当前窗口句柄
HWND h = user32.FindWindow(windowClass, title);
windowClass:窗口类型;
title:窗口标题;
两个参数允许其中一个为null
发送消息
Send_Msg_Windows(h, msg);
h:窗口句柄
msg:待发送消息
添加回答
举报
0/150
提交
取消