我希望用户输入您的号码 例如,在x = 55 y = 45
的位置写入数字答案 0 :(得分:0)
This post has the same Q and answer
在java中有一个名为ROBOT的类,它控制着pc的外围设备,检查出来。
Tutorial on mouse moving using ROBOT
上面教程的主要代码:
import java.awt.Robot;
public class MouseClass {
public static void main(String[] args) throws Exception {
Robot robot = new Robot();
// SET THE MOUSE X Y POSITION
robot.mouseMove(300, 550);
}