在 Java 中移动光标
2022-09-01 16:58:23
我想制作一个应用程序,用于测量光标与组件中心的距离,然后将光标移回中心(就像大多数PC视频游戏一样)。有人有什么建议吗?
我想制作一个应用程序,用于测量光标与组件中心的距离,然后将光标移回中心(就像大多数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) {
}
嗨,这只是添加。我经常使用Raspberry PI,所以我不得不学习如何优化我的代码,这将缩短很多。
try {
//moves mouse to the middle of the screen
new Robot().mouseMove((int) Toolkit.getDefaultToolkit().getScreenSize().getWidth() / 2, (int) Toolkit.getDefaultToolkit().getScreenSize().getHeight() / 2);
//remember to use try-catch block (always, and remember to delete this)
} catch (AWTException e) {
e.printStackTrace();
}
不要忘记导入:
import java.awt.*;