Java可以写宏吗?

发布于 2024-09-29 00:23:43 字数 147 浏览 4 评论 0原文

当我的 Java 应用程序中发生某些事件时,我想快速单击另一个应用程序。

鉴于我知道屏幕上想要注册点击的坐标,我的 Java 应用程序是否可以告诉操作系统点击那里?

我可能想注册多次点击。

我也可能/相反想注册键盘敲击。这也可能吗?

I want to quickly click on another application when some event occurs in my Java application.

Given that I know the coordinates on the screen where I want to register a click, is it possible for my Java app to tell the OS to click there?

I will probably want to register multiple clicks.

I may also/instead want to register keyboard strokes. Is this possible also?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不一样的天空 2024-10-06 00:23:43

您应该看一下机器人类。它将允许您模拟点击和鼠标移动。

您可能特别需要的方法是:

void    keyPress(int keycode) 
          Presses a given key.
void    keyRelease(int keycode) 
          Releases a given key.
void    mouseMove(int x, int y) 
          Moves mouse pointer to given screen coordinates.
void    mousePress(int buttons) 
          Presses one or more mouse buttons.
void    mouseRelease(int buttons) 
          Releases one or more mouse buttons.

You should take a look at the Robot class in Java. It will allow you to simulate clicks and mouse movement.

The methods in particular that you probably want are:

void    keyPress(int keycode) 
          Presses a given key.
void    keyRelease(int keycode) 
          Releases a given key.
void    mouseMove(int x, int y) 
          Moves mouse pointer to given screen coordinates.
void    mousePress(int buttons) 
          Presses one or more mouse buttons.
void    mouseRelease(int buttons) 
          Releases one or more mouse buttons.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文