在Java中移动光标

我想制作一个可以测量光标到组件中心的距离,然后将光标移回中心的应用程序(就像大多数PC视频游戏一样)。有没有人有什么建议?

回答:

机器人课可以帮您解决问题。以下是用于移动鼠标光标的示例代码:

try {

// These coordinates are screen coordinates

int xCoord = 500;

int yCoord = 500;

// Move the cursor

Robot robot = new Robot();

robot.mouseMove(xCoord, yCoord);

} catch (AWTException e) {

}

以上是 在Java中移动光标 的全部内容, 来源链接: utcz.com/qa/404890.html

回到顶部