Question

I'm using accelerator to perform CTRL+C then CTRL+V using java/junit is there a way to get the value of CTRL+V to check it ?

Was it helpful?

Solution

As mentioned here, a menu accelerator key stroke such as Ctrl+V should be constructed in a platform independent manner:

int mask = Toolkit.getDefaultToolkit().getMenuShortcutKeyMask();
JMenuItem menuItem = new JMenuItem(…);
menuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_V, mask));

For comparison, you can get the menu item's KeyStroke via getAccelerator() or from any KeyEvent via KeyStroke.getKeyStrokeForEvent().

OTHER TIPS

If you mean how do I simulate the ctrl+V and ctrl+C events within a JUnit test for a Swing application, then I would recommend looking at FEST. Using FEST, you can simulate mouse clicks, or key presses. To simulate a ctrl+V, you would do:

// import static java.awt.event.KeyEvent.*;          
dialog.list("employees").pressKey(VK_CONTROL)
                        .pressAndReleaseKey(VK_V)
                        .releaseKey(VK_CONTROL);

and so on. For more information on simulating user input, see the wiki Simulating Keyboard Input.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top