如何在java中更改Windows控制台中光标的位置

时间:2013-06-17 06:06:44

标签: java console cursor position

我希望用户输入您的号码  例如,在x = 55 y = 45

的位置写入数字

1 个答案:

答案 0 :(得分:0)

This post has the same Q and answer

在java中有一个名为ROBOT的类,它控制着pc的外围设备,检查出来。

Link to ROBOT class

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);
}