为了账号安全,请及时绑定邮箱和手机立即绑定

java如何发送文本消息到wind

java如何发送文本消息到wind

湖上湖 2018-07-25 15:15:27
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:待发送消息

查看完整回答
反对 回复 2018-08-25
  • 1 回答
  • 0 关注
  • 1405 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信