如何使用Java移动鼠标光标(窗口)? 我有一对不断更新的价值观。我想用它们来控制光标。
答案 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