本文介绍了获取鼠标位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想模拟Java中的自然鼠标移动(从这里到像素逐行)。要做到这一点,我需要知道起始坐标。

I would like to simulate a natural mouse movement in Java (going from here to there pixel by pixel). To do that I need to know the starting coordinates.

我找到了方法event.getX()和event.getY()但我需要一个事件.. 。

I've found the method event.getX() and event.getY() but I need an event...

如何在不做任何事情(或不可见的事情)的情况下知道仓位?

How can I know the positions without doing anything (or something not visible)?

谢谢

推荐答案

可能会有所帮助。它返回与当前鼠标对应的对象位置。

MouseInfo.getPointerInfo().getLocation() might be helpful. It returns a Point object corresponding to current mouse position.

这篇关于获取鼠标位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 05:11