如何控制(移动)鼠标光标?

时间:2013-11-12 12:05:30

标签: cursor

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

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分: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