这个与模拟鼠标点击的函数差不多,直接上函数
1
2
|
keybd_event(VK_RETURN,0,0,0); keybd_event(VK_RETURN,0,KEYEVENTF_KEYUP,0); |
这是模拟按下、抬起回车键
我直接上一个我曾经用它与一些函数写的一个刷屏程序
我用自己的小号试过,如果对方用的是手机,效果很显著
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
#include<iostream> #include<windows.h> using namespace std; int b[11000],top=0; char a[10]; bool f= true ; int main(){ int n,num; //初始化 a[0]= '0' ; a[1]= '1' ; a[2]= '2' ; a[3]= '3' ; a[4]= '4' ; a[5]= '5' ; a[6]= '6' ; a[7]= '7' ; a[8]= '8' ; a[9]= '9' ; while (1){ cout<< "请输入刷屏次数:" ; cin>>n; cout<< "请输入间隔时间(单位:毫秒 1000毫秒=1秒):" ; cin>>num; if_return: cout<< "是否需要前导回车? 1.yes 2.no" <<endl; int k; cin>>k; if (k==1){ f= true ; } else if (k==2){ f= false ; } else { cout<< "输入错误!" <<endl; goto if_return; //比较乱的但是很方便的循环 } cout<< "请把光标移动到输入框" <<endl; Sleep(2000); mouse_event(MOUSEEVENTF_LEFTDOWN,0,0,0,0); mouse_event(MOUSEEVENTF_LEFTUP,0,0,0,0); //模拟单击鼠标左键 cout<< "请等待三秒。。。" <<endl; Sleep(1000); cout<< "3" <<endl; Sleep(1000); cout<< "2" <<endl; Sleep(1000); cout<< "1" <<endl; for ( int i=1; i<=n; i++){ if (f== true ){ keybd_event(VK_RETURN,0,0,0); keybd_event(VK_RETURN,0,KEYEVENTF_KEYUP,0); } int x=i; while (x>0){ b[top++]=x%10; x/=10; } top--; for ( int j=top; j>=0; j--){ keybd_event(a[b[j]],0,0,0); keybd_event(a[b[j]],0,KEYEVENTF_KEYUP,0); //模拟按下某个数字键 } top=0; keybd_event(VK_RETURN,0,0,0); keybd_event(VK_RETURN,0,KEYEVENTF_KEYUP,0); //模拟按下回车键 Sleep(num); } putchar (7); system ( "cls" ); //清屏 } return 0; } |
以上这篇C++模拟键盘按键的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/everlasting_20141622/article/details/52233642