java:如何发送加速键

发布于 2024-12-02 22:45:21 字数 326 浏览 0 评论 0原文

我在eclipse下使用Junit4。 我想编写一个能够发送操作的测试:ctrl+shift+P

我使用 JTable 尝试了此操作,因为我不知道可以对哪个组件使用 sendAcceleratorKey

myTable.sendAcceleratorKey(InputEvent.CTRL, InputEvent.SHIFT_DOWN_MASK)

但我无法添加第三个参数来表示 KeyEvent.P

我如何发送更改菜单的操作?

谢谢!

I am using Junit4 under eclipse.
I would like to write a test which can be able to send the action : ctrl+shift+P

I tried this using JTable as I don't know for which component I could use the sendAcceleratorKey :

myTable.sendAcceleratorKey(InputEvent.CTRL, InputEvent.SHIFT_DOWN_MASK)

but I can't add a third argument to say KeyEvent.P.

How can I send this action which changes the menu?

Thanks!

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

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

发布评论

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

评论(2

み格子的夏天 2024-12-09 22:45:21

我想你可以使用 Robot 类。

Robot robot = new Robot();
robot.keyPress(KeyEvent.VK_CONTROL);
robot.keyPress(KeyEvent.VK_SHIFT);
robot.keyPress(KeyEvent.VK_P);

Thread.sleep(1000); // Time for your code to react to the event

assert(...);

robot.keyRelease(KeyEvent.VK_CONTROL);
robot.keyRelease(KeyEvent.VK_SHIFT);
robot.keyRelease(KeyEvent.VK_P);

I guess you can use the Robot class.

Robot robot = new Robot();
robot.keyPress(KeyEvent.VK_CONTROL);
robot.keyPress(KeyEvent.VK_SHIFT);
robot.keyPress(KeyEvent.VK_P);

Thread.sleep(1000); // Time for your code to react to the event

assert(...);

robot.keyRelease(KeyEvent.VK_CONTROL);
robot.keyRelease(KeyEvent.VK_SHIFT);
robot.keyRelease(KeyEvent.VK_P);
所谓喜欢 2024-12-09 22:45:21

我找不到任何对 sendAcceleratorKey() 的引用。但是,如果它确实存在并且它执行了您想要的操作,那么在我看来,使用键修饰符以这种方式使用该方法似乎是合乎逻辑的:

myTable.sendAcceleratorKey(InputEvent.CTRL | InputEvent.SHIFT_DOWN_MASK,
                           KeyEvent.VK_P);

否则,请尝试根据方法签名交换参数。

myTable.sendAcceleratorKey(KeyEvent.VK_P,
                           InputEvent.CTRL | InputEvent.SHIFT_DOWN_MASK);

I can't find any reference to sendAcceleratorKey(). But if it really exists and it does what you want, it looks logic to me to use the the method this way, using key modifiers:

myTable.sendAcceleratorKey(InputEvent.CTRL | InputEvent.SHIFT_DOWN_MASK,
                           KeyEvent.VK_P);

Otherwise, try to swap the parameters, depending on the methods signature.

myTable.sendAcceleratorKey(KeyEvent.VK_P,
                           InputEvent.CTRL | InputEvent.SHIFT_DOWN_MASK);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文