如何让机器人按住鼠标按钮一段时间?

发布于 2024-11-15 21:45:31 字数 190 浏览 3 评论 0原文

我正在使用 Java 使用 Robot 类生成鼠标按下操作:

robot.mousePress(InputEvent.BUTTON1_MASK);
robot.mouseRelease(InputEvent.BUTTON1_MASK);

但是,我希望机器人按下按钮一段时间。我怎样才能实现这个目标?

I am using Java to generate a mouse press using the Robot class:

robot.mousePress(InputEvent.BUTTON1_MASK);
robot.mouseRelease(InputEvent.BUTTON1_MASK);

However, I want the Robot to press the button for a certain period of time. How can I achieve this?

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

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

发布评论

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

评论(2

我一向站在原地 2024-11-22 21:45:31

只需在两个操作之间休眠一下(以毫秒为单位):

  1. Thread.sleep(long millis);

    robot.mousePress(InputEvent.BUTTON1_MASK);
    尝试 { Thread.sleep(1000); } catch(Exception e) {} // 点击一秒
    robots.mouseRelease(InputEvent.BUTTON1_MASK);
    
  2. Robot.delay(long millis); >

    robot.mousePress(InputEvent.BUTTON1_MASK);
    机器人.延迟(1000); // 点击一秒
    robots.mouseRelease(InputEvent.BUTTON1_MASK);
    

Just sleep a bit between the two actions (specified in milliseconds):

  1. Thread.sleep(long millis);

    robot.mousePress(InputEvent.BUTTON1_MASK);
    try { Thread.sleep(1000); } catch(Exception e) {} // Click one second
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    
  2. Robot.delay(long millis);

    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.delay(1000); // Click one second
    robot.mouseRelease(InputEvent.BUTTON1_MASK);
    
早乙女 2024-11-22 21:45:31

我这样做了,很简单:当您检测到按下鼠标时,您保存System.currentTimeMillis()。当您检测到鼠标被释放时,您只需检查它被按下的时间。

如果您希望在一定时间后执行操作,即使鼠标仍然被按下,您也可以启动一个线程,该线程在按下时存活所需的时间,并在释放时中断它。如果线程在您想要的时间内没有被中断,则将执行该操作。

I did that, it's simple: when you detect the mouse is pressed, you save the System.currentTimeMillis(). When you detect the mouse is released, you just check how long it was pressed.

If you want the action to be made after a certain amount of time, even if the mouse is still pressed, you start a thread that lives the desired amount of time when pressed and you interrupt it when releasing. If the thread isn't interrupted in the amount of time you wanted, the action will be performed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文