web-dev-qa-db-ja.com

プログラムでJava SwingのGUIボタンをクリックする

関連するすべてのアクション/マウスイベントを登録し、ユーザーに見えるように(つまり、実際にクリックしたようにボタンが押されているのが見えるように)プログラムでSwing JButtonをクリックする方法はありますか?

ボタンは、実行中の同じアプリケーションにあります。別のアプリケーションでボタンを制御しようとはしていません。私はイベントをキューに直接注入できると思いますが、可能であればそのアプローチを避けたいと思います。

Java.awt.Robotクラスには、マウスを移動してクリックするメソッドがありますが、特定のボタンをクリックするメソッドは提供されていません。

51
Gigatron

doClick() を使用してみましたか?

94
JasCav

doClick()が望んでいない場合、マウスを実際にボタンに移動して押すことができます。

public void click(AbstractButton button, int millis) throws AWTException
{
    Point p = button.getLocationOnScreen();
    Robot r = new Robot();
    r.mouseMove(p.x + button.getWidth() / 2, p.y + button.getHeight() / 2);
    r.mousePress(InputEvent.BUTTON1_MASK);
    try { Thread.sleep(millis); } catch (Exception e) {}
    r.mouseRelease(InputEvent.BUTTON1_MASK);
}
9

質問者はbutton.doClick()に満足していましたが、ニーモニックを設定した後、つまりbutton.setMnemonic(KeyEvent.VK_A)で何が起こるかを探していました。実際には何も起こらずにALT + Aを押し続けることができます(視覚的な変化を除く)。キーAを離すと(ALTの有無にかかわらず)、ボタンはActionEventを発生させます。

button.getModel()を使用してButtonModel( Java 8 API を参照)を取得し、model.setPressed(true); model.setArmed(true);を使用して視覚的にボタンを押すことができることがわかりました(どちらもニーモニックによって変更されます) 、両方をfalseに設定してボタンを視覚的に離します。また、ボタンが押されてアームされているときにmodel.setPressed(false)が呼び出されると、ボタンはActionEventを自動的に起動します(model.setArmed(false)の呼び出しはボタンを視覚的に変更するだけです)。

[ButtonModelからの引用Java API documentation]モデルが武装しているときにマウスを放すと、ボタンがトリガーされ、ActionEventが発生します[...]

ボタンが表示されているときにアプリケーションがキーの押下に反応するようにする(包含ウィンドウまたはボタンがフォーカス所有者である必要がない場合、つまりウィンドウ内の別のコンポーネントにフォーカスがある場合)キーバインディングを使用しました( 公式Javaチュートリアル )。

作業コード:SHIFT + Aを押して視覚的にボタンを押します(ニーモニックがbutton.setMnemonic()で設定された後にALTを押すのとは対照的です)。キーを放して、コンソールにアクションコマンド(「ボタン」)を印刷します。

// MnemonicCode.Java
import javax.swing.*;
import Java.awt.event.*;

public class MnemonicCode extends JFrame
{
  public MnemonicCode(int keyCode)
  {
    JButton button = new JButton("button");

    getContentPane().add(button);
    addMnemonicToButton(button,keyCode);
    button.addActionListener(new ActionListener () {
      public void actionPerformed(ActionEvent e)
      {
        System.out.println(e.getActionCommand());
      }
    });

    pack();
    setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    setVisible(true);
  }

  public static void main(String[] args) throws Exception
  {
    MnemonicCode bp = new MnemonicCode(KeyEvent.VK_A);
  }

  void addMnemonicToButton(JButton button,int keyCode)
  {
    int shiftMask = InputEvent.SHIFT_DOWN_MASK;

    // signature: getKeyStroke(int keyCode, int modifiers, boolean onKeyRelease)
    KeyStroke keyPress = KeyStroke.getKeyStroke(keyCode,shiftMask,false);
    KeyStroke keyReleaseWithShift = KeyStroke.getKeyStroke(keyCode,shiftMask,true);

    // get maps for key bindings
    InputMap inputMap = button.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
    ActionMap actionMap = button.getActionMap();

    // add key bindings for pressing and releasing the button
    inputMap.put(keyPress,"press"+keyCode);
    actionMap.put("press"+keyCode, new ButtonPress(button));

    inputMap.put(keyReleaseWithShift,"releaseWithShift"+keyCode);
    actionMap.put("releaseWithShift"+keyCode, new ButtonRelease(button));

    ///*
    // add key binding for releasing SHIFT before A
    // if you use more than one modifier it gets really messy
    KeyStroke keyReleaseAfterShift = KeyStroke.getKeyStroke(keyCode,0,true);
    inputMap.put(keyReleaseAfterShift,"releaseAfterShift"+keyCode);
    actionMap.put("releaseAfterShift"+keyCode, new ButtonRelease(button));
    //*/
  }

  class ButtonPress extends AbstractAction
  {
    private JButton button;
    private ButtonModel model;
    ButtonPress(JButton button)
    {
      this.button = button;
      this.model = button.getModel();
    }

    public void actionPerformed(ActionEvent e)
    {
      // visually press the button
      model.setPressed(true);
      model.setArmed(true);

      button.requestFocusInWindow();
    }
  }

  class ButtonRelease extends AbstractAction
  {
    private ButtonModel model;
    ButtonRelease(JButton button)
    {
      this.model = button.getModel();
    }

    public void actionPerformed(ActionEvent e)
    {
      if (model.isPressed()) {
        // visually release the button
        // setPressed(false) also makes the button fire an ActionEvent
        model.setPressed(false);
        model.setArmed(false);
      }
    }
  }
}
3
mkdrive2

ソースとしてアクションイベントを発生させることにより、常にシミュレートできます。

http://download.Oracle.com/javase/6/docs/api/Java/awt/event/ActionEvent.html

起動するには、上記のアクションイベントを作成し、必要なリスナーを呼び出すだけです

ActionEvent e = new ActionEvent(myButton,1234,"CommandToPeform");
myListener.actionPerformed(e);
2
corsiKa

From: http://download.Oracle.com/javase/6/docs/api/javax/swing/JButton.html

/**
 * Click a button on screen
 *
 * @param button Button to click
 * @param millis Time that button will remain "clicked" in milliseconds
 */
public void click(AbstractButton button, int millis) {
   b.doClick(millis);
}
1
Michael K

@Courteauxの答えに基づいて、このメソッドはJTableの最初のセルをクリックします。

private void clickFirstCell() {
    try {
        jTable1.changeSelection(0, 0, false, false);
        Point p = jTable1.getLocationOnScreen();
        Rectangle cellRect = jTable1.getCellRect(0, 0, true);
        Robot r = new Robot();
        Point mouse = MouseInfo.getPointerInfo().getLocation();
        r.mouseMove(p.x + cellRect.x + cellRect.width / 2, 
                p.y + cellRect.y + cellRect.height / 2);
        r.mousePress(InputEvent.BUTTON1_MASK);
        try {
            Thread.sleep(50);
        } catch (Exception e) {
        }
        r.mouseRelease(InputEvent.BUTTON1_MASK);
        r.mouseMove(mouse.x, mouse.y);
    } catch (AWTException ex) {
    }
}
0
user586399