0

如何使用 Java 移动鼠标光标(Windows)?我有一对不断更新的价值观。我想用它们来控制光标。

4

2 回答 2

1

Robot.mouseMove(x,y)

OscarRyz的https://stackoverflow.com/a/2941373/1150918中所述。

于 2013-11-12T12:08:46.500 回答
0

您将需要使用 Robot 类。

Robot r = null;
try {
    r = new Robot();
} catch (AWTException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}
r.mouseMove(x, y);//x is the horizontal position on the screen, y is the vertical
于 2014-04-13T02:02:20.963 回答