gpt4 book ai didi

java - 在java中模拟左键单击?

转载 作者:行者123 更新时间:2023-12-01 09:33:40 25 4
gpt4 key购买 nike

我正在努力弄清楚如何在java中刺激左键单击,任何帮助表示赞赏!

这是我的代码:

Robot KeyPresser = new Robot();
KeyPresser.???

对我来说,在InputEvent之后显示的唯一内容是InputEvent.mouseInputEvent或InputEvent.keyInputEvent

最佳答案

我建议你检查一下文档,它是可用的。 here and here这是如何使用机器人的示例

    try{

Robot robot = new Robot();
// mouse move
robot.mouseMove(x,y);// x,y are cordinates
// Simulate a mouse click
robot.mousePress(InputEvent.BUTTON1_MASK);
robot.mouseRelease(InputEvent.BUTTON1_MASK);

// Simulate a key press
robot.keyPress(KeyEvent.VK_A);
robot.keyRelease(KeyEvent.VK_A);

} catch (AWTException e) {
e.printStackTrace();
}

关于java - 在java中模拟左键单击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39175038/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com