我想创建一个应用程序,测量光标距组件中心的距离,然后将光标移回中心(就像大多数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) { }