在java中的预定义坐标处执行左键单击

发布于 2024-10-18 11:50:48 字数 117 浏览 3 评论 0原文

我想用java在预定义的坐标上执行左键单击。有一个图书馆可以完成这项任务吗?

请注意,我不想实现一个侦听器来查看谁在我的应用程序或任何此类内容中执行了鼠标单击,我只想执行鼠标单击。

谢谢。

I would like to perform a left click at a pre-defined coordinate with java. Is there a library for this task ?

Please notice that I do not want to implement a listener to see who performs a mouse click where in my application or anything of that sort, I simply would like to perform a mouse click.

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苍风燃霜 2024-10-25 11:50:48

时,不需要外部库java.awt.Robot 可以为您做到这一点。

There is no need for an external library, when java.awt.Robot can do it for you.

暗恋未遂 2024-10-25 11:50:48

如果应在您自己的应用程序的组件上模拟单击,您可以使用 Component.dispatchEvent(AWTEvent) 来传递事件。或者,您可以确定哪个组件位于给定位置并直接传递事件:

Component c = mainComponent.getComponentAt(p);
MouseEvent e = new MouseEvent(c,MouseEvent.MOUSE_CLICKED, System.currentTimeMillis(), p.x, p.y, 1, false);
for (MouseListener l : c.getMouseListeners()) {
  l.mouseClicked(e);
}

If the click should be simulated on a component of your own application, you could use Component.dispatchEvent(AWTEvent) to deliver the event. alternatively you could determine which component is at the given location and deliver the event directly:

Component c = mainComponent.getComponentAt(p);
MouseEvent e = new MouseEvent(c,MouseEvent.MOUSE_CLICKED, System.currentTimeMillis(), p.x, p.y, 1, false);
for (MouseListener l : c.getMouseListeners()) {
  l.mouseClicked(e);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文