Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想当用户输入您的号码时,例如写在 x=55 y=45 的位置
这个帖子有相同的Q和答案
java中有一个类叫做ROBOT,它控制着pc的外围设备,看看吧。
链接到 ROBOT 课程
使用 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); }