JAVA Robot mouseMove 2 Monitors

时间:2017-10-18 22:33:16

标签: java mousemove robot

我试图编写一个程序,根据时间将鼠标光标移动到某个坐标,无论用户如何。我用机器人编写了一个简单的代码,但遇到了一个问题...我有两个显示器,光标移动不正确,具体取决于它当前的显示器,请告诉我如何解决问题。

下面的代码是我试图创建的......

    GraphicsEnvironment graphicsEnvironment = GraphicsEnvironment.getLocalGraphicsEnvironment();

    GraphicsDevice[] graphicsDevices = graphicsEnvironment.getScreenDevices();

    for(int i=0; i < graphicsDevices.length; i++)
    {
        System.out.println(graphicsDevices[i]);            
    }

    try {

        //Robot robot = new Robot(MouseInfo.getPointerInfo().getDevice());            

        Robot robot = new Robot();            

        while(true)
        {
            robot.mouseMove(-1640, -3);

            robot.mousePress(InputEvent.BUTTON1_MASK);
            robot.mouseRelease(InputEvent.BUTTON1_MASK);

            Thread.sleep(10000);
        }

    } catch (Exception e) {
        e.printStackTrace();
    }

1 个答案:

答案 0 :(得分:0)

你应该考虑获得解决方案,然后从那里开始。你正在进行绝对移动,它们在不同的设置中会有所不同。

您应该使用此代码

GraphicsDevice gd = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
int width = gd.getDisplayMode().getWidth();
int height = gd.getDisplayMode().getHeight();
从那里你可以:

Robot robot = new Robot(); 
robot.mouseMove (width-10, height+3);

因此,您可以将 相对 移至监视器的规格。我希望我有所帮助。