0

私のコードで ActionListener の正しい使い方を教えてください。コードはコンパイルされ、GUI は正しく表示されますが、ボタンが機能しません!! コードをテストする場合は、作成したプロジェクト ファイルと同じフォルダーに画像を配置し、「ImageIcon myImageIcon = new ImageIcon("rodeo.jpg");」という行を変更する必要があることに注意してください。あなたの写真の名前によると。

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class ImageApplication extends JFrame implements ActionListener
{
public Image myImage;
public JLabel myImageLabel;
public ImageIcon myImageIcon;
public JFrame frame;
public JTextField txtWidth, txtHeight;
public int origWidth, origHeight;


public static void main(String[] args)
{
    int origWidth, origHeight;
    ImageApplication ia = new ImageApplication();
    ia.setVisible(true);
    JFrame frame = new JFrame();
    ImageIcon myImageIcon = new ImageIcon("rodeo.jpg");
    JLabel myImageLabel = new JLabel(myImageIcon, JLabel.CENTER);
    Image myImage = myImageIcon.getImage();


    origWidth = myImageIcon.getIconWidth();
    origHeight = myImageIcon.getIconHeight();

    JMenuBar myMenuBar = new JMenuBar();
    JMenu myMenu = new JMenu("Options");
    JMenuItem myMenuItem1 = new JMenuItem("Double");
    JMenuItem myMenuItem2 = new JMenuItem("Reset");
    myMenu.add(myMenuItem1);
    myMenu.add(myMenuItem2);
    myMenuBar.add(myMenu);
    ia.setJMenuBar(myMenuBar);

    JButton bAL = new JButton("Align Left");
    JButton bAC = new JButton("Align Center");
    JButton bAR = new JButton("Align Right");
    JButton bResize = new JButton ("Resize");
    bAL.setFocusPainted(false);
    bAC.setFocusPainted(false);
    bAR.setFocusPainted(false);
    bResize.setFocusPainted(false);

    JLabel lWidth = new JLabel("Width:");
    JLabel lHeight = new JLabel("Height:");
    JTextField txtWidth = new JTextField(Integer.toString(origWidth));
    JTextField txtHeight = new JTextField(Integer.toString(origHeight));

    JPanel GRID = new JPanel(new GridBagLayout());
    GridBagConstraints c = new GridBagConstraints();

    c.fill = GridBagConstraints.BOTH;
    c.weightx = 1f;
    c.weighty = 0f;

    c.gridx = 0;
    c.gridy = 0;
    GRID.add(bAL, c);
    c.gridx++;
    GRID.add(bAC, c);
    c.gridx++;
    GRID.add(bAR, c);
    c.gridx = 0;
    c.gridy = 1;
    c.gridwidth = 3;
    GRID.add(myImageLabel, c);
    c.gridwidth = 1;

    c.gridx = 0;
    c.gridy = 2;
    GRID.add(lWidth, c);
    c.gridx++;
    c.gridwidth = 2;
    GRID.add(txtWidth, c);
    c.gridwidth = 1;

    c.gridx = 0;
    c.gridy = 3;
    GRID.add(lHeight, c);
    c.gridx++;
    c.gridwidth = 2;
    GRID.add(txtHeight, c);
    c.gridwidth = 1;

    c.gridx = 0;
    c.gridy = 4;
    GRID.add(bResize, c);

    ia.add(GRID, BorderLayout.CENTER);
    ia.setSize(origWidth + 150, origHeight + 150);

    myMenuItem1.addActionListener(ia);
    myMenuItem1.setActionCommand("double");
    myMenuItem2.addActionListener(ia);
    myMenuItem2.setActionCommand("reset");
    bAL.addActionListener(ia);
    bAL.setActionCommand("left");
    bAC.addActionListener(ia);
    bAC.setActionCommand("center");
    bAR.addActionListener(ia);
    bAR.setActionCommand("right");
    bResize.addActionListener(ia);
    bResize.setActionCommand("resize");
}



private void ResizeImage(int Width, int Height)
{
    myImage = myImage.getScaledInstance(Width, Height, Image.SCALE_SMOOTH);
    myImageIcon.setImage(myImage);
    myImageLabel.setIcon(myImageIcon);

    txtWidth.setText(Integer.toString(Width));
    txtHeight.setText(Integer.toString(Height));

    setSize(Width + 150, Height + 150);
}

public void actionPerformed(ActionEvent e)
{
    String command = e.getActionCommand();

    if(command == "left") myImageLabel.setHorizontalAlignment(JLabel.LEFT);
    else if(command == "center") myImageLabel.setHorizontalAlignment(JLabel.CENTER);
    else if(command == "right") myImageLabel.setHorizontalAlignment(JLabel.RIGHT);
    else if(command == "resize") ResizeImage(Integer.parseInt(txtWidth.getText()),       
    Integer.parseInt(txtHeight.getText()));
    else if(command == "double") ResizeImage(myImageIcon.getIconWidth() * 2,  
    myImageIcon.getIconHeight() * 2);
    else if(command == "reset") ResizeImage(origWidth, origHeight);
}
}
4

4 に答える 4

4

String#equalsコンテンツの比較に使用しStringます。==オブジェクト参照を比較する演算子を使用しています。

ただし、ボタンの機能が異なるため、それぞれに個別のActionListener. ActionListenerこれは、匿名インスタンスを使用して実行できます。

副次的な問題: クラス メンバー変数myImageLabelが割り当てられていません。代わりに、同じ名前の別の変数がstaticメイン メソッドで初期化されます。メイン メソッドでインスタンス化されたすべてのコンポーネントをインスタンス メソッドに移動し、JLabel ローカル クラス宣言も削除する必要があります。

コードを移動した後:

JLabel myImageLabel = new JLabel(myImageIcon, JLabel.CENTER);

する必要があります

myImageLabel = new JLabel(myImageIcon, JLabel.CENTER);
于 2013-04-23T00:05:20.353 に答える
2

このメソッドを試してください: 機能: ボタン自体に追加され、実行されるメソッドをクリックすると:

buttonName.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent arg0) {
                //do what ever
            }
        });
        //set bunds for the button itself, if not done otherwise, but for your layout.
于 2013-04-23T00:14:43.040 に答える
1

これらのインスタンス変数:

public JTextField txtWidth, txtHeight;

初期化されることはありませんが、リスナー コードで参照されます。インスタンス化するのと同じ名前のローカル変数があります。これを変える:

JTextField txtWidth = new JTextField(Integer.toString(origWidth));
JTextField txtHeight = new JTextField(Integer.toString(origHeight));

これに:

txtWidth = new JTextField(Integer.toString(origWidth));
txtHeight = new JTextField(Integer.toString(origHeight));

他のインスタンス変数についても同様です。

于 2013-04-23T00:14:43.790 に答える
0

次のコードを使用して画像を取得します

ImageIcon myImageIcon = new ImageIcon("rodeo.jpg").getImage();

于 2014-07-10T12:04:31.247 に答える