Java可以写宏吗?
当我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该看一下
机器人
类。它将允许您模拟点击和鼠标移动。
您可能特别需要的方法是:
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: