-3

我是编程新手,为了提高我的编程技能,我开始从事这个小项目并陷入困境。项目是关于捕获用户击中的键(更像是键盘记录器)并将它们以文本格式存储。我能够在 Windows 中做到这一点,但在 linux 中却不行。首选语言是 C,shell 脚本。

任何帮助表示赞赏。

我能够在终端上获得击键,但不能在其他应用程序上获得。

#include<stdio.h>
#include<unistd.h>
#include<stdlib.h>
#include<termios.h>
#include<unistd.h>
#include<fcntl.h>
int kbhit(void)
{
struct termios oldt, newt;
int ch;
int oldf;
tcgetattr(STDIN_FILENO, &oldt);
newt = oldt;
newt.c_lflag &= ~(ICANON | ECHO);
tcsetattr(STDIN_FILENO, TCSANOW, &newt);
oldf = fcntl(STDIN_FILENO, F_GETFL, 0);
fcntl(STDIN_FILENO, F_SETFL, oldf | O_NONBLOCK);
ch = getchar();
tcsetattr(STDIN_FILENO, TCSANOW, &oldt);
fcntl(STDIN_FILENO, F_SETFL, oldf);
if(ch != EOF)
{
ungetc(ch, stdin);
return 1;
}
return 0;
}
main( int argc, char** argv )
{
char *input = argv[0];
int nomor = argc;
pid_t pid = 0;
int x=0;
while(1)
{
if(kbhit()){
//clearing the buffer
char ch = getchar();
printf("you hit keyboard and key = %c\n", ch);
}
}
}
4

1 回答 1

1

在 Linux 中的“所有情况”中捕获密钥几乎是不可能的。

原因是控制台上的键处理与 X Window 系统上的键处理完全不同。

如果您只想在 X Window 系统处于活动状态时(当 Linux 使用 GUI 运行时)捕获键,您应该使用“XQueryKeymap”。您需要使用“XOpenDisplay”创建 X 服务器(Linux GUI)的句柄。然后您可以使用“XQueryKeymap”来检查哪些键当前处于关闭状态。不幸的是,要获得这些键的 ASCII 码并不容易!

于 2013-09-10T19:50:45.020 回答